我正在id: assignee, status , priority的多个下拉框中执行相同的功能。

$("#assignee , #status , #priority").change(function() {

//text here

}


但是我想知道单击了哪个特定的下拉列表。有什么方法可以做到这一点?

最佳答案

只需使用以下内容:

$("#assignee, #status, #priority").change(function() {
    if (this.id === "assignee") { ... }
});

08-18 21:27