我想獲得點擊按鈕的ID,因爲我有我的窗體上4-5按鈕。找到點擊按鈕的ID
<button type="submit" style="height: 30px" id="btnHelp" name="btnHelp" onclick="ShowHelp(2);return false;">Help</button>
<button type="button" style="height: 30px" id="btnClose" name="btnClose" onclick="Close();return false;">Close</button>
<button type="button" style="height: 30px" id="btnSave" name="btnSave" onclick="Save();return false;">Close</button>
...............................
無論按下哪個按鈕,我只想獲得該按鈕的ID。
$(function() {
var id = $(this).attr('id');
alert(id);
})
與
$("input").click(function (event) {
var urlid = $(this).attr('id')
alert(urlid);
})
但我收到警報爲未定義
也。
如何獲得點擊的按鈕ID?
請幫幫我。
嘗試從按鈕 –