「jquery」td.groupName検索の書き方
Jqueryコード
$(“tbody tr").click(function(){
$(this).addClass(“selected");/行選択
var groupName = $(this).find(“td.groupName");//列選択
});
Coding Changes the World
Jqueryコード
$(“tbody tr").click(function(){
$(this).addClass(“selected");/行選択
var groupName = $(this).find(“td.groupName");//列選択
});