码迷,mamicode.com
首页 > Web开发 > 详细

jQuery EasyUI 布局

时间:2014-10-13 12:56:19      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   使用   ar   sp   

通过使用 jQuery EasyUI 可以很容易地添加 Tabs。您只需要调用 ‘add‘ 方法即可。

在本教程中,我们将使用 iframe 动态地添加显示在一个页面上的 Tabs。 当点击添加按钮,一个新的 tab 将被添加。如果 tab 已经存在,它将被激活。

bubuko.com,布布扣

步骤 1:创建 Tabs

<div style="margin-bottom:10px">
    <a href="#" class="easyui-linkbutton" onclick="addTab(‘google‘,‘http://www.google.com‘)">google</a>
    <a href="#" class="easyui-linkbutton" onclick="addTab(‘jquery‘,‘http://jquery.com/‘)">jquery</a>
        <a href="#" class="easyui-linkbutton" onclick="addTab(‘easyui‘,‘http://jeasyui.com/‘)">easyui</a>
</div>
<div id="tt" class="easyui-tabs" style="width:400px;height:250px;">
<div title="Home">
</div>
</div>

这个 html 代码非常简单,我们创建了带有一个名为 ‘Home‘ 的 tab 面板的 Tabs。请注意,我们不需要写任何的 js 代码。

步骤 2:实现 ‘addTab‘ 函数

function addTab(title, url){
        if ($(‘#tt‘).tabs(‘exists‘, title)){
            $(‘#tt‘).tabs(‘select‘, title);
        } else {
            var content = ‘<iframe scrolling="auto" frameborder="0"  src="‘+url+‘" style="width:100%;height:100%;"></iframe>‘;
            $(‘#tt‘).tabs(‘add‘,{
                title:title,
                content:content,
                closable:true
            });
        }
    }

jQuery EasyUI 布局

标签:style   blog   http   color   io   os   使用   ar   sp   

原文地址:http://www.cnblogs.com/dekevin/p/4021698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!