0
我該怎麼做,並在CSS/jQuery選擇器?如何選擇一個帶有標籤按鈕和ID「reg」的jquery元素。使用jquery使用tag + id值選擇元素
我該怎麼做,並在CSS/jQuery選擇器?如何選擇一個帶有標籤按鈕和ID「reg」的jquery元素。使用jquery使用tag + id值選擇元素
ID是獨特的DOM元素,所以只認準ID:
var button = $('#reg');
編輯::如果您必須:
var button = $('button#reg');
ID是最快的選擇。所以,如果你實際上是分配一個元素ID確保它是唯一的,所以你可以隨時通過ID選擇器來選擇它
$('# // <-- id selector - notice the pound sign
$('#reg'). //<-- that's how you select an element by id
你的意思是像$('button#reg')? – StuartLC
'CSS'中的button#reg'和'jQuery'中的$('button#reg')。 – verisimilitude
http://api.jquery.com/category/selectors/ – undefined