我可以動態傳遞按鈕ID嗎?如何在jquery焦點事件中動態傳遞id?
$('#Button1').focus(function() {
if (document.getElementById('HiddenVal').value != null && document.getElementById('HiddenVal').value != '') {
$('#txtbox1').val(document.getElementById('HiddenVal').value);
$('#Button1', window.parent.document).css("background-color", "#fcc63b");
document.getElementById('HiddenVal').value = '';
}
});
這裏我想動態地傳遞按鈕ID而不是使用$('#Button1')
。
我可以使用它嗎?
取決於你想要做什麼。你可以添加更多的細節?另外,如果您使用jquery,則不需要使用document.getElementById。您可以使用簡寫jQuery方法 – JohnP
ya它基本上取決於您想從哪裏獲取按鈕,如果您不想直接使用字符串值,則可以將button1分配給變量名稱。 – melaos