js怎么判断哪个是哪个button触发了这个方法?
发布网友
发布时间:2022-04-27 11:54
我来回答
共2个回答
热心网友
时间:2023-10-08 18:59
在你的button触发的方法加参数.
如function goEdit(id){
window.open("url?id="+id);
}
<button onclick="goEdit('这里把你的数据的主键传进来')">编辑</button>
或者你不想改,在js里面用 event.srcElement可以得到触发事件的button对象
热心网友
时间:2023-10-08 18:59
document 的方法:
getElementById(id) 或
getElementsByName(name) 这个返回数组