我有这段代码:
<script>
$(document).ready(function larg(){
var larghezza = $(document).width();
$("p.width").text("The width for the " + larghezza +
" is px.");
});
$(window).resize(function() {
larg();
});
</script>
我想在窗口调整大小时调用函数“larg”,但是它不起作用。
怎么做??
谢谢
最佳答案
您不能以这种方式声明函数,请像这样使用它。
<script>
$(document).ready(larg);
$(window).resize(larg);
function larg(){
var larghezza = $(document).width();
$("p.width").text("The width for the " + larghezza + " is px.");
}
</script>
编辑:更改了一点代码,谢谢评论者