【发布时间】:2015-01-11 08:51:47
【问题描述】:
标签: php encoding utf-8 domdocument
标签: php encoding utf-8 domdocument
如果你只是想改变所有锚标签的href,那么你可以只使用jquery
代码如下所示:
//loop through the anchor tags
$("a").each(function(){//begin each function
//set the href attributes
$(this).attr("href","http://example.com/");
});//end each function
这是一个 jsfiddle 示例:http://jsfiddle.net/fu5fxawm/1/
如果您将鼠标悬停在链接上,您会看到它们已被更改。
【讨论】: