我想更改具有以下属性的链接标记的href属性:
rel="apple-touch-icon-precomposed"
有谁知道如何实现这一目标?
谢谢
答案 0 :(得分:2)
Ext.select可用于搜索DOM元素。要了解如何在DOM中选择元素,可以查看jQuery Selectors文档。
然后可以使用Ext.dom.Element.set来更改href属性。请注意,即使Ext.select返回一个集合,也可以在集合中使用Ext.Element的所有方法。
简而言之,这就是这样的:
Ext.select("a[rel='apple-touch-icon-precomposed']").set({href: 'my-other-link.html'});