用My97DatePicker控件的时候老是跑到上一个页面的解决办法

来源:互联网 发布:unity3d 动画 编辑:程序博客网 时间:2024/06/05 19:44
 

找到My97DatePicker文件夹下的calendar.js,如后找到function My97DatePicker()将后面的history.go(-1)注释掉即可!!

function My97DatePicker(){

    if(parent==window)return;
    if(navigator.product!='Gecko'){
         if(location.href.substring(location.href.length-3).toLowerCase()=='#97')

         {

                location.replace(location.href.substring(0,location.href.length-3));
return;

         }
         else

         {

              location.replace(location.href+"#97");

         }
        //history.go(-1);
}