前端之家收集整理的这篇文章主要介绍了
如何在jQuery中调用函数调整窗口大小?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个
代码:
<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>
编辑:更改代码一点,谢谢评论者
原文链接:https://www.f2er.com/jquery/181934.html