我正在使用DOMAssistant库搜索特定链接,然后将其替换为其他链接,但我无法搜索链接。
我想搜索包含http://www.google.com/
的所有链接,我希望它返回这些链接:
http://www.google.com/123
http://www.google.com/"24234
http://www.google.com/example
我不想用id来获取它:
($("#id").elmsByAttribute("href");)
我是js和DOMAssistant库的新手,有人可以帮我这样做吗?
答案 0 :(得分:0)
<a href="http://semat.com.sa">semat.com.sa</a> | <a href="http://google.com">google.com</a> | <a href="http://google.com?111">google.com?111</a> | <a href="google.com?id=33edd">google.com?id=33edd</a> | <a href="http://www.google.com">http://www.google.com</a> | <a href="http://sematsystems.com">sematsystems.com</a>
<script>$('a[href*="google"]').css({"color":"red"});</script>
答案 1 :(得分:0)
您可以使用这种方式搜索多个域
<script>$('a[href*="google"], a[href*="semat"]').css({"color":"red"});</script>
答案 2 :(得分:0)
var x = ['a[href*="google"]','a[href*="semat"]'];
$.each(x,function(index) {
alert(x[index]);
});