0
「A」 html元素屬性我想刪除從在PHP「A」 html元素一個「class」屬性。刪除(如果它存在)一個「類」在PHP
實施例1:
<p class="red">Link: <a href="http://www.google.com" style ="margin: 0px">google</a>.</p>
結果:
<p class="red">Link: <a href="http://www.google.com" style ="margin: 0px">google</a>.</p>
實施例2:
<p class="red">Link: <a href="http://www.google.com" class = "link" style="margin: 0px" >google</a>.</p>
結果:
<p class="red">Link: <a href="http://www.google.com" style="margin: 0px" >google</a>.</p>
你不需要PHP或正則表達式。你需要JavaScript。 – 2014-10-04 18:31:15
可能的複製 - http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript – 2014-10-04 18:35:42
@aj_r,我需要做的是在服務器端,例子是PHP的字符串。我需要用正則表達式來做。 – Amparo 2014-10-04 18:42:16