我要执行以下命令:

$('#AccountID').change(SelectAccounts);

and then (SelectProducts)


有什么方法可以使SelectAccounts都在同一行之后执行SelectProducts函数吗?

最佳答案

怎么样:

$("#AccountID").change(SelectAccounts).change(SelectProducts);


(在jQuery中,事件处理程序按照绑定的顺序执行。SelectAccounts始终在SelectProducts之前运行)

09-17 05:24