我有一个示例代码:
$link = '<a href="http://test.com/t123#readmore" class="">Read more</a>';
而我的代码 php 添加 onlick 事件
$link = preg_replace( '#<a(.+?)href="(.+?)"(.+?)(</a>)#s', '<a href="$2" onclick="test();"></a>', $link);
但是错误不能在标签a上添加onclick,如何解决?
<a href="http://test.com/t123#readmore" onclick="test();" class="">Read more</a>