1.找到嵌套在iframe内联框架中的table 表头元素
$(document).on("click","th",function(){
alert($(this).find("span").text());
})
document点击后 找到指定的子元素中的th元素
然后再找 th元素的 span子元素的text()
$(document).on("click","th",function(){
alert($(this).find("span").text());
})
document点击后 找到指定的子元素中的th元素
然后再找 th元素的 span子元素的text()