我希望在变量中加载页面时获得宽度,当页面调整大小时,在我定义的相同变量中取宽度。 我写的任何代码都没有回答 我想用jquery语言
实现这段代码答案 0 :(得分:0)
链接http://api.jquery.com/width/
// Returns width of browser viewport
$( window ).width();
// Returns width of HTML document
$( document ).width();
答案 1 :(得分:0)
我找到了这个answeeeeeeeeeeeeeerrrrrrr
每个人都可以使用它::::
<span class="output"></span>
<script src="js/vendor/jquery.js"></script>
<script>
var window_width;
var call;
function get_width(window_width){
window_width = $(window).width();
return window_width;
};
jQuery(document).ready(function($) {
$(window).resize(function() {
call = get_width();
console.log("on resize: "+call);
$('.output').text(call);
});
call = get_width();
console.log("on load: "+call);
// show output
$('.output').text(call);
});
</script>