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');