我正在使用此代碼來更改圖像的標題。IE拼接和連接問題
基本上它應該拆分破折號(總會有至少一個),並將第一部分作爲標題,其餘破折號作爲描述。
這在FF中正常工作,但不在IE中(在v8中測試過),它給了我'對象不支持此屬性或方法'的描述行。
我已經嘗試了所有數量的測試,但IE只是不喜歡零件[0]拼接後。有任何想法嗎?
$('.right ul li img').each(function() {
parts = $(this).attr('title').split('-');
title = $.trim(parts[0]);
parts.splice(0, 1);
description = $.trim(parts.join('-'));
title = '<strong>' + title + '</strong><br />' + description;
$(this).attr('title', title);
});
很煩人,謝謝! – fire 2010-03-03 16:50:31