我是使用 jQuery 的菜鸟。我有一个错误的问题
未捕获的 SyntaxError:意外的令牌
我正在使用 jQuery 的 1.9.0 版本。我正在创建动态数量的记录,每条记录都会tr
在表格中创建一个,我还想在文本框中添加一些动态编码
我的 Html 标记的一部分:
<tbody>
<tr id="row_1">
<td class="value">
<input id="1" name="collections[appearance][headersubcolor][entity_id1][name]" value="0" class="Root Catalog input-text" type="text">
<p class="note">
<span>Click inside to change a color of each Category</span>
</p>
</td>
<td class="scope-label">
</td>
<td class="">
</td>
</tr>
<tr id="row_2">
<td class="label">
<td class="value">
<input id="2" name="collections[appearance][headersubcolor][entity_id2][name]" value="0" class="Default Category input-text" type="text">....
jQuery代码:
$('tr[id^="row_"]'.each(function(){
var rowid = parsInt(this.id.replace("row_",""));
console.lof("id:"+ rowid);
var ??? = new jscolor.color(document.getElementById('???'), {})
});
$('tr[id^="row_"]'.each(function() <--- 我无法获取数据