dwz打开自定义dialog
生活随笔
收集整理的這篇文章主要介紹了
dwz打开自定义dialog
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在使用dwz界面的時候,需要打開自定義的dialog,并向其中傳入參數,在網上搜索,大多數是使用lookup這這樣的功能來實現
lookup這樣的功能太復雜看不懂,所以使用了jquery的方法來實現自定義參數的傳遞,代碼如下
整體的思路是這樣的,給<a> 指定一個id,然后給這個id添加綁定事件,然后在事件中傳入自定義的url即可
<li><a class="add" href="javascript:;" id="mydialog" ><span>打款</span></a></li>$("#mydialog").bind("click",function(){var ids = "";$('input[type="checkbox"][name="ids"]:checked').each(function() {ids+=$(this).val()+",";});if(ids==""){alertMsg.error('請選擇打款記錄!');return;}var custurl="{:U('pay')}?ids="+ids;//這個位置以上的代碼可以自定義成自己的函數,只要把custurl傳給url即可,下面的代碼是從dwz.min.js拷貝出來的$("a[target=dialog]", $p).each(function() var $this = $(this);var title = $this.attr("title") || $this.text();var rel = $this.attr("rel") || "_blank";var options = {};var w = $this.attr("width");var h = $this.attr("height");if (w)options.width = w;if (h)options.height = h;options.max = eval($this.attr("max") || "false");options.mask = eval($this.attr("mask") || "false");options.maxable = eval($this.attr("maxable") || "true");options.minable = eval($this.attr("minable") || "true");options.fresh = eval($this.attr("fresh") || "true");options.resizable = eval($this.attr("resizable") || "true");options.drawable = eval($this.attr("drawable") || "true");options.close = eval($this.attr("close") || "");options.param = $this.attr("param") || "";var url = custurl;DWZ.debug(url);if (!url.isFinishedTm()) {alertMsg.error($this.attr("warn") || DWZ.msg("alertSelectMsg"));return false;}$.pdialog.open(url, rel, title, options);return false;
總結
以上是生活随笔為你收集整理的dwz打开自定义dialog的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: dwz 表单提交 html,DWZ文件上
- 下一篇: dwz 表单提交 html,dwz 文件