码迷,mamicode.com
首页 > 其他好文 > 详细

ScriptManager,updatepanel中按钮事件不兼容IE10以后版本

时间:2014-09-09 15:37:58      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   java   for   div   cti   sp   

IE10下调试会报javascript错误:Sys.WebForms.PageRequestManagerServerErrorException

ScriptManager控件之后添加

    <script type="text/javascript">
        Sys.WebForms.PageRequestManager.getInstance()._origOnFormActiveElement = Sys.WebForms.PageRequestManager.getInstance()._onFormElementActive;
        Sys.WebForms.PageRequestManager.getInstance()._onFormElementActive = function(element, offsetX, offsetY) {
            if (element.tagName.toUpperCase() === ‘INPUT‘ && element.type === ‘image‘) {
                offsetX = Math.floor(offsetX);
                offsetY = Math.floor(offsetY);
            }
            this._origOnFormActiveElement(element, offsetX, offsetY);
        };
    </script>

 

ScriptManager,updatepanel中按钮事件不兼容IE10以后版本

标签:style   blog   color   io   java   for   div   cti   sp   

原文地址:http://www.cnblogs.com/xyangs/p/3962421.html

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