我的咖啡脚本通过以下行发布:
$(document).on 'change', '#myid1'
现在它也应该在
的变化上启动'#myid2'
'#myid3'
'#myid4'
.
.
.
And so on..
它还应该记住启动脚本的数量。例如,如果#myid1被更改,则javascript应该被触发并保存" 1"。
我该怎么做?
祝你好运!
答案 0 :(得分:2)
这是你在找什么?
代码:
$(document).on('change', '#myid1, #myid3, #myid4', function () {
var id = $(this).attr('id');
var num = id.substring(id.length - 1, id.length);
alert(num); // Should alert the correct value (1, 3, 4 etc...)
});
您可能还想查看为每个元素添加一个类(即<input type="text" class="inputElem" id="myid1" />
然后更改为代码以处理基于此类的更改,而不是列出ID:
$(document).on('change', '.inputElem', function () {
var id = $(this).attr('id');
var num = id.substring(id.length - 1, id.length);
alert(num); // Should alert the correct value (1, 3, 4 etc...)
});