标签: jquery jquery-ui
$("#tabs-1").off("click").on("click",function(){ alert("test");});
此代码在单击tabs-1的标签区域时有效,但我希望警告框仅在单击标题页眉(Nunc tincidunt文本)时显示。
tabs-1
Nunc tincidunt
非常感谢任何帮助。
请参阅此FIDDLE
答案 0 :(得分:2)
直接定位a代码:
a
$("a[href='#tabs-1']").on("click",function(){ alert("test");});
小提琴:http://jsfiddle.net/2ok7svxm/1/