我试图使用的功能不起作用,所以我测试了长度选择(应该是一个):
$('header').append('<p id="ancho_ventana"></p>');
$(document).ready(function(){
alert(('p#ancho_ventana').length); //outputs "15"
});
还尝试了
var ancho = $('<p id="ancho_ventana"></p>').hide();
$(document).ready(function(){
$(window).bind('resize',function(){
alert(('p#ancho_ventana').length);
})
});
第二个功能输出相同。为什么会这样?
答案 0 :(得分:5)
您的alert
会返回字符串p#ancho_ventana
的长度,其中包含15个字符。
我想你的意思是:
alert($('p#ancho_ventana').length);