这个问题非常明显。
而不是像自己一样捕获:this.getAttribute('id'))
或this.id
;是否可以从另一个标签中捕获属性?
编辑:
当然,有一个onclick:
让我们说:
<button onclick="Submit_Click("here I want to catch the attribute of another tag, not this one")">Save changes</button>
答案 0 :(得分:0)
试试这个:
yourElement.onclick = function() {
var otherID = document.getElementById('youOtherElementId').id;
};
答案 1 :(得分:0)
您可以像这样使用querySelector或getElementbyId:
<button onclick="Submit_Click(document.getElementById('id-of-other-element').getAttribute('id'));">Save changes</button>