我無法從此代碼獲取parentNode.tagName,並將一些樣式設置爲li
標記。獲取父節點標記名
// path to catalog images
var img = $('.catalog ul li > img');
for (i = 0; i < img.length; i++) {
var pic_real_width;
// Make in memory copy of image to avoid css issues
$("<img/>").attr("src", $(img[i]).attr("src")).load(function() {
pic_real_width = this.width;
if (pic_real_width > 500) {
// this part of code not work
var imageParent = this.parenNode.tagName = 'li';
imageParent.style.width = '50%';
}
});
}
但是,在你的代碼中你想讀'parentNode.tagName'? – techfoobar
我們應該如何在沒有關聯的HTML的情況下爲您提供幫助?我會建議做一個小提琴...... –