【问题标题】:DOMDocument and windows-1250 encodingDOMDocument 和 windows-1250 编码
【发布时间】:2015-01-11 08:51:47
【问题描述】:

标签: php encoding utf-8 domdocument


【解决方案1】:

如果你只是想改变所有锚标签的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/

如果您将鼠标悬停在链接上,您会看到它们已被更改。

【讨论】:

  • 我现在明白你为什么使用 php 是有道理的
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2017-12-01
  • 2016-12-21
  • 1970-01-01
  • 1970-01-01
  • 2012-06-14
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多