我需要捕获点击存储在数组ids
中的ID的元素。
例如:
ids = ['item1','item3','item4']
<a href='' id='item1'></a>
<a href='' id='item3'></a>
<a href='' id='item4'></a>
点击3时,它应返回3并阻止重定向。
答案 0 :(得分:2)
如果返回3表示警报3 ......
$.each(ids, function(index, value) {
$('#' + value).click(function(event) {
alert(this.id);
event.preventDefault();
});
});