Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在挠头,试图让 Jquery 有条件地搜索和替换文档中的标题标签。本质上,我希望 Jquery 遍历图像标签列表,检查图像标签是否为空格“”,如果是,则删除空格“”。如果标题标签是其他东西,Jquery 应该不理会它。
HTM 我不允许添加代码,所以我把它放在这里http://www.stylishtimes.com/title.txt
到目前为止,我可以删除每个标题标签:$('#galleria img').attr("title", "");
$('#galleria img').attr("title", "");
在此先感谢您的帮助。
试试这个:
$('#galleria img[title=" "]').attr('title','');
试试这个 :
var title = $('#galleria img').attr("title"); var newtitle = $.trim(title); $('#galleria img').attr("title", newtitle);