以下是代碼:jQuery的(本).find(DIV:第一).outerWidth IE 8錯誤
var b = this;
b.children("li").each(function() {
var c = jQuery(this).find("div:first");
var g = c.outerWidth();
alert(g);
}
該警報語句拋出了在恆定的值的值 '3' 對於每次迭代,儘管它應該是不同的。僅在IE8中出現問題。原因和解決方法?
您可以將HTML呢?你還使用哪個jQuery版本? – jsalonen
你的情況又是什麼? – jsalonen
這是如何在其他瀏覽器中使用的? 'b'不是一個jQuery對象。 – undefined