function del(personId) { document.getElementById('data_delete').style.display = 'block'; } function button1(personId) { window.location.href = "deleteId.do?personId=" + personId; }如何将这两个获取的id值是一样的
时间: 2024-02-28 08:55:53 浏览: 91
document.getElementById()
如果你想让这两个获取的id值是一样的,可以将`personId`作为一个参数传递给`button1`函数,就像这样:
```
function del(personId) {
document.getElementById('data_delete').style.display = 'block';
button1(personId);
}
function button1(personId) {
window.location.href = "deleteId.do?personId=" + personId;
}
```
这样,当你调用`del`函数时,它会将`personId`作为参数传递给`button1`函数,从而使得这两个获取的id值是一样的。
阅读全文