Jquery条件替换标题标签
我一直在绞尽脑汁试图让 Jquery 有条件地搜索和替换文档中的标题标签。本质上,我希望 Jquery 遍历图像标签列表,检查图像标签是否是空格“”,如果是,则删除空格“”。如果标题标签是其他内容,Jquery 应该保留它。
HTM 我不允许添加代码,所以我把它放在这里 http://www.stylishtimes.com/title .txt
到目前为止,我可以使用以下方法删除每个标题标签:$('#galleria img').attr("title", "");
提前感谢您的帮助。
I have been scratching my head trying to get Jquery to conditionally search and replace title tags in a document. Essentially I want Jquery to go through a list of image tags, check if the image tag is a space " " and if so remove the space "". If the title tag is anything else Jquery should leave it alone.
HTM i am not allowed to add code so I put it here http://www.stylishtimes.com/title.txt
So far I can remove every title tag with:$('#galleria img').attr("title", "");
Thanks in Advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
试试这个:
Try this :