我有一个按钮:
<button onclick = "doDisactivate(5);" id = "status_button_5" value = "Disactivate" />
其中 5 是动态添加的 ID。我有两个 javascript 函数,doDisactivate(ID) 和 doActivate(5)。
function doDisactivate(serviceID) {
// logic that changes the button onclick to doActivate(serviceID)
}
function doActivate(serviceID) {
// logic that changes the button onclick to doActivate(serviceID)
}
我猜我可以用 jquery 做以下事情:
${"#status_button_" + serviceID}.click(function() {
doActivate(serviceID);
});
但是有没有办法在将 ID 作为参数传递时直接分配函数?