输入
<input type="text" value="" id="row1">
<input type="text" value="" id="row2">
需要从行中获取最后一个字符并将其传递给 javascript 变量。这里是row1和row2,需要获取变量1和2
我尝试使用它,但不起作用
$('[id^="row"]').each(function (index, row) {
var row = row.id.substring(3);
alert (row);//this is only to check if value exists (alert or not)
});
完全没有警觉。但需要:在第一次迭代(.each)时,var 行是 1,第二次是 - 2,等等。
以此为例。该示例有效,但我的代码无效
$.each([52, 97], function(index, value) {
alert(index + ': ' + value);
});