JS显示模态窗口

来源:互联网 发布:接地气网络词语 编辑:程序博客网 时间:2024/05/16 11:37
  function showUploadDialog()
    {
        var theDes = "dialogWidth:400px;dialogHeight:130px;help:no;status:no;scroll:no";
        var result =window.showModalDialog("../Other/UploadPhoto.aspx?x="+ Math.random(), '', theDes);
       
         if (result=='' || result==undefined)
         {
           
         }
         else
         {
            setReturnValue(result);
         };
        return false;
 
    }
原创粉丝点击