禁用img标签

时间:2011-04-29 13:55:39

标签: jquery

如何使用jquery删除页面上img的href属性?

此img标记没有任何类或ID用于引用

4 个答案:

答案 0 :(得分:3)

图片代码没有href属性,他们有图像位置的src属性

使用jQuery选择器可以删除src属性

请检查其父对象,如果它具有id或class属性,则可以使用以下任何一种。

如果父母(例如考虑div)有id。

$("div#your-id img").removeAttr('src')

如果父母有班级。

$("div.your-class img").removeAttr('src')

答案 1 :(得分:0)

如果您知道该链接,那么我相信您可以执行类似

的操作
$("a[href='http://www.google.com/']").attr('href', '#')

答案 2 :(得分:0)

图片没有href属性。它具有src属性。

如果它是特定且唯一的src属性值,那么您只需选择它即可。

E.g。使用attribute selector

完全匹配
$("img[src='foo.gif']").hide();

或当src以特定域开头时,使用attribute starts with selector

$("img[src^='http://example.com']").hide();

答案 3 :(得分:0)

图片代码没有href属性,他们有图像标记的src属性。

请检查其父对象,如果它具有id或class属性,则可以使用以下任何一种。

如果父母(例如考虑div)有id。

$("div#your-id img").removeAttr('src')

如果父母有班级。

$("div.your-class img").removeAttr('src')