我正在尝试将2个参数传递给ajax,但是我不确定该怎么做。它可以通过id
,而不通过anotherId
。我已经研究过.on() documentation,但并没有真正帮助我。
HTML
<button class="btn btn-sm btn-success edit_modal" id="123" anotherId="111">Click</button>
JS
$(document).on('click', '.edit_modal', function() {
var id1 = this.id;
var id2 = this.anotherId;
console.log(id1); //this returns "123" in console
console.log(id2); //this returns undefined...why?
$.ajax({
...
data: { "id1":id1, "id2":id2 }
...
});
});
答案 0 :(得分:2)
更改这两个:
var id1 = this.id;
var id2 = this.anotherId;
至:
var id1 = $(this).attr("id");
var id2 = $(this).attr("anotherId");