他我做了这个函数来设置id的属性:
function set_atr($id, $attribute, $value, $source){
$dom = new DomDocument();
$dom->loadHTML('<meta http-equiv="content-type" content="text/html; charset=utf-8">'.$source);
$xp = new DOMXPath($dom);
$element = $xp->query('//*[@id="'.$id.'"]')->item(0);
if(!$element){
return false;
}
else{
$element->setAttribute($attribute, $value);
return str_replace('<meta http-equiv="content-type" content="text/html; charset=utf-8">', '', $dom->saveHTML($dom->documentElement));
}
}
当我不使用它来编辑整个文档时,它只是一个快照,例如:
<table>
<tr>
<td><h4>login</h4></td>
<td></td>
</tr>
<tr>
<td>username:</td>
<td>password:</td>
</tr>
<tr>
<td><input id="username" type="text" placeholder="pipo" name="username" class="form" /></td>
<td><input id="password" type="password" placeholder="wachtwoord" name="password" class="form" /></td>
</tr>
<tr>
<td id="error1"></td>
<td id="error2"></td>
</tr>
<tr>
<td><input type="button" value="Login" class="btn" action="url" level="cms_user_login" form="login" /></td>
<td></td>
</tr>
</table>
它假定文档的其余部分丢失,并添加额外的 html 标记,如下所示:
<html>
<head></head>
<body> <table>
<tr>
<td><h4>login</h4></td>
<td></td>
</tr>
<tr>
<td>username:</td>
<td>password:</td>
</tr>
<tr>
<td><input id="username" type="text" placeholder="pipo" name="username" class="form" /></td>
<td><input id="password" type="password" placeholder="wachtwoord" name="password" class="form" /></td>
</tr>
<tr>
<td id="error1"></td>
<td id="error2"></td>
</tr>
<tr>
<td><input type="button" value="Login" class="btn" action="url" level="cms_user_login" form="login" /></td>
<td></td>
</tr>
</table></body>
</html>
它不会直接受伤,但看起来很丑。我以这种方式使用它的原因是因为我经常使用 ajax,而且我只发回 html 的片段而不是整个文档。
所以有人知道如何让 DOM 停止这样做吗?或者这是不可能的。当我使用我的函数时,我也可以使用 str_replace 删除它们,但我认为这是一个丑陋的修复。