日期:2014-05-16 浏览次数:20342 次
$(function () {
$("#GridView1 tr").each(function () {
$bt = $(this).children().eq(8).children().attr("id")
$ph = $(this).children().eq(2).children().text();
$("#" + $bt).click(function () {
alert($ph);
})
})
})
$(function () {
$("#GridView1 tr").each(function () {
$bt = $(this).children().eq(8).children().attr("id")
$("#" + $bt).click((function(){
$ph = $(this).children().eq(2).children().text();
return function () {
alert($ph);
}
})() )
})
})
$(function () {
$("#GridView1 tr").each(function () {
$bt = $(this).children().eq(1).children().attr("id")
$ph = $(this).children().eq(0).childre