我有一個循環,因爲它需要所有的div具有相同的類名稱將創建DIV, 我有功能從這個(選擇)DIV選擇兒童
$(".divclassname").click(function() {
var name = //I want to get the h1 text of the selected div the one the user Clicked on
alert(name);
});
我嘗試過很多辦法,包括
$("this > h1").text();
$(this > "h1").text();
$(this).children(h1);
$(this).children("h1").text();
我也被分配一個類,並嘗試這種
$(this).children(".h1class").text();
所有的結果我是空的。 我很抱歉我是begginer,這個問題可能很容易原諒我。 非常感謝。
改變'$( 「divclassname」)。點擊(函數(){'使用'$(文件)。在( '點擊', 'divclassname' ,function(){' – guradio
點擊處理程序是好的,只是嘗試選擇第一個匹配的h1元素,如:$(this).children(「h1:first」)。text() – Fearodin