artDialog弹出框

<link href="/js/artDialog/skins/default.css" rel="stylesheet" />

<script src="/js/artDialog/artDialog.js" type="text/javascript"></script>
<script src="/js/artDialog/plugins/iframeTools.source.js" type="text/javascript"></script>

//打开
art.dialog.open(src, { title: "明细", resize: false, width: '985px', height: '630px', });

//子页面
art.dialog.data('returnValue',"2017-01-01");// 存储数据
art.dialog.close();

//父页面
art.dialog.open(src, {title: "明细", resize: false, width: '985px', height: '630px', close: function () {
                var returnValue = art.dialog.data('returnValue');// 读取子页面的数据
                if (returnValue != undefined) {
                    console.log(returnValue)
                }
            }
        });

 

相关文章:

  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
  • 2021-06-14
  • 2022-02-20
  • 2021-07-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2021-05-21
  • 2022-12-23
  • 2021-09-01
  • 2021-05-22
相关资源
相似解决方案