首页 > Web开发 > 详细

GridView 服务端控件添加 js

时间:2016-03-16 14:05:27      阅读:160      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!