jQuery中的$(this)
和this
有什麼區別?這裏有兩種不同的用途:
$(document).ready(function() {
$("#orderedlist").find("li").each(function(i) {
$(this).append(" BAM! " + i);
});
});
$(document).ready(function() {
// use this to reset several forms at once
$("#reset").click(function() {
$("form").each(function() {
this.reset();
});
});
});
「'this' _by本身就是對DOM對象的事件採取行動upon_參考」,迄今結識最美麗的定義'這',豎起大拇指哥們:)! – Irfan 2017-11-21 06:33:32