首页 > Web开发 > 详细

回发保留前台添加的html

时间:2020-06-13 23:11:18      阅读:51      评论:0      收藏:0      [点我收藏+]

GPS平台、网站建设、软件开发、系统运维,找森大网络科技!
http://cnsendnet.taobao.com
来自森大科技官方博客
http://www.cnsendblog.com/index.php/?p=786

 

1.注册事件,由于这个table是由DataGrid生成的,所以,在后台Page_Load()事件中无法给前端table赋html,故这样写

技术分享图片

2.查看使用的方法

技术分享图片

3.查看form

技术分享图片

4.查看js

<script type="text/javascript">

var theForm = document.forms[‘aspnetForm‘];

if (!theForm)

{    

theForm = document.aspnetForm;

}

function __doPostBack(eventTarget, eventArgument)

{   

        if (!theForm.onsubmit || (theForm.onsubmit() != false))

{        

theForm.__EVENTTARGET.value = eventTarget;        

theForm.__EVENTARGUMENT.value = eventArgument;        

theForm.submit();    

}

}

</script>

 

GPS平台、网站建设、软件开发、系统运维,找森大网络科技!
http://cnsendnet.taobao.com
来自森大科技官方博客
http://www.cnsendblog.com/index.php/?p=786

回发保留前台添加的html

原文:https://www.cnblogs.com/cnsend/p/13121965.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!