zoukankan      html  css  js  c++  java
  • showModalDialog参数使用

    实例参考:

    //参数
    var objDialogArguments = new Object();
    objDialogArguments.ProductGUID = arrProductGUID;
    objDialogArguments.ProductName = arrProductName;

    var strReturnValue = window.showModalDialog(url, objDialogArguments, "dialogWidth:" + strWidth + "px; dialogHeight:" + strHeight + "px; status:no; help:no; resizable:no;scroll:no;");

    //模态窗口接收参数

    //获取模态窗口参数,产品List
    var obj = window.dialogArguments;

    arrProductGUID = dialogArguments.ProductGUID;
    arrProductName = dialogArguments.ProductName;

    基本介绍:

      showModalDialog()                              (IE 4+ 支持)
      showModelessDialog()                         (IE 5+ 支持)
      window.showModalDialog()                 方法用来创建一个显示HTML内容的模态对话框。
      window.showModelessDialog()            方法用来创建一个显示HTML内容的非模态对话框。

      使用方法:

      vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
      vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])

      参数说明:

      sURL                --   必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
      vArguments   --    可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
      sFeatures       --    可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。

  • 相关阅读:
    nodejs
    httpClient closeableHttpClient
    re(正则表达式)模块
    ConfigParser模块
    random和string模块
    常用文件操作模块json,pickle、shelve和XML
    time和datetime模块
    os、sys和shutil模块
    内建函数
    生成器、迭代器、装饰器
  • 原文地址:https://www.cnblogs.com/weikai/p/3116513.html
Copyright © 2011-2022 走看看