如果您已經在y上使用jquery,則爲我們的頁面,也許你應該嘗試給所有你想要的目標共享類,然後檢測點擊?
<input class="same_kind_buttons" type="submit" id="btn1" />
<input class="same_kind_buttons" type="button" id="btn2" />
<script>
$(".same_kind_buttons").click(function() {
console.log($(this).attr("type"));
console.log(this.id);
});
</script>
當然,如果傻冒沒有在頁面上使用jQuery的,你不應該包括它只是該功能,你可以使用:
<input type="submit" id="btn1" onclick="f1(this);"/>
<input type="submit" id="btn2" onclick="f1(this);" />
<script>
function f1(elem) {
console.log(elem.tagName);
console.log(elem.id);
}
</script>
如果你使用jQuery,有什麼意義內嵌的JavaScript?使用'$(#btn1).click(...)'。 – georg