DWZ (JUI) 教程 NavTab Dialog Title 设置问题
新浪微博 http://weibo.com/u/1534913940
有朋友问到,如何设置 Navtab 和 Dialog 问题 其实这个问题 文档上是有说明的,我就从源码上简单分析一下
// navTab $("a[target=navTab]", $p).each(function(){ $(this).click(function(event){ var $this = $(this); //这里是获取Tile var title = $this.attr("title") || $this.text(); //这里是获取Id var tabid = $this.attr("rel") || "_blank"; var fresh = eval($this.attr("fresh") || "true"); var external = eval($this.attr("external") || "false"); var url = unescape($this.attr("href")).replaceTmById($(event.target).parents(".unitBox:first")); DWZ.debug(url); if (!url.isFinishedTm()) { alertMsg.error($this.attr("warn") || DWZ.msg("alertSelectMsg")); return false; } navTab.openTab(tabid, url,{title:title, fresh:fresh, external:external}); event.preventDefault(); }); });
这个是 创建 NavTab的链接 首先获取 a 的 title,如果没有指定的话 获取 a 的 text 内容
有些朋友把 re l和 title 理解混淆了 rel 是指定 id ,在表单回调函数,关闭或者刷新上一般就用上了 其实就是 navTab的唯一标示。
Dialog和navTab 在这个方面原理是一直的,大家简单看看源码就明白了
转载请标明出处http://blog.csdn.net/jiweigang1/article/details/8576577