码迷,mamicode.com
首页 > Web开发 > 详细

GridView 服务端控件添加 js

时间:2016-03-16 14:07:32      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

针对服务端控件的 CommandField “Delete” 添加 js

技术分享

 

 $("#GridView1").find("a").each(
        function() {
            var text = $(this).html();
            if (text == "Delete") {
                var td = $(this).parent().parent().children().eq(0);
                $(this).on("click", function() {
                    if (confirm("Delete the "+$(td).html()+"?")) {
                        return true; // 允许执行后台代码
                    }
                    else {
                        return false; //// 不允许执行后台代码
                    }
                });
            }
        }
     );

 

GridView 服务端控件添加 js

标签:

原文地址:http://www.cnblogs.com/yipeng-yu/p/5283089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!