我創造了新的網站和它,我想,當我點擊一個DIV jQuery的告訴我DIV ID和我的用戶命令,我可以給DIV ID警報DIV ID當點擊DIV
var name = $(this).attr("id");
當我想給div的孩子,我用這個命令
var name = $(this).children(".select").attr("name");
現在我有3個div的這樣 enter image description here
,當我點擊DIV 3 jQuery的給我使用本C DIV2 ommand
var name = $(this).children(".select").attr("name");
如何在單擊它時獲取div的ID?
例如點擊DIV 1告訴我DIV 1或當我點擊DIV 2顯示了我2區 ,當我點擊DIV 3顯示我的div 3
感謝
顯示你的html和javascript。 –