在 W3C 验证器中出现错误。我使用查询附加了一个 html 语句。但是,我在 W3C 中收到此错误:
属性“id”的值中不允许字符“'”
$('<tr id="condition' + num + '" class="clonedInput" ><td class="first-colu…
您可能违反了此属性的命名约定。例如,id 和 name 属性必须以字母开头,而不是数字。
我的代码如下
$('<tr id="condition' + num + '" class="clonedInput" ><td class="first-column"> </td>
<td><span style="float:left; padding-right: 10px;"><select id="conCol' + num + '"
name="conCol' + num + '" class="standard_select" style="width:147px; background:#fff;">
<option>Telephone Number</option><option>Mobile Number</option><option>Fax Number</option>
<option>iPhone Number</option><option>BB Messenger Id</option><option>Skype Name</option>
<option>Google Talk Id</option><option>MSN Messenger Id</option></select></td>
</tr>').appendTo('#addContact');