您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
小编给大家分享一下MVC+EasyUI+三层新闻网站建立tabs标签的示例分析,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
MVC新闻网站建立,完成tabs标签的制作。
首先对 Center 进行一个简单的布局
<!--------------中间布局开始----------------> <div data-options="region:'center',title:'Center'" > <div class="easyui-tabs" fit="true" id="tt"> <div title="欢迎使用"> <h2 >欢迎!</h2> <h2 > Welcome !</h2> </div> </div> </div> <!--------------中间布局结束--------------->
然后就是在js里面完成tabs的点击事件实现了
其实center就是在div里面嵌入了一个iframe,所以最后返回的就是一个iframe
<script type="text/javascript"> $(function () { //tabs的点击事件 bindTabsEvent(); }); function bindTabsEvent() { $(".detail").click(function () { //拿到点击标题 var title = $(this).text(); //拿到点击的url var url = $(this).attr("url"); //判断标签是否存在 var isExt = $("#tt").tabs("exists", title); //如果存在则选中 if (isExt) { $("#tt").tabs("select", title); //选中 return; } //不存在就添加标签 $("#tt").tabs("add", { title: title, content: createTabContent(url), closable:true }); }); } function createTabContent(url) { return '<iframe src="' + url + '" scrolling="no" frameborder="0" width="100%" height="100%"></iframe>'; } </script>
这里需要注意一点就是上面的detail是导航栏的类选择器的值(这里的class一定要一样)
整个页面代码
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> <script src="~/Scripts/jquery-1.8.2.js"></script> <script src="~/Content/EasyUI/jquery.easyui.min.js"></script> <script src="~/Content/EasyUI/easyui-lang-zh_CN.js"></script> <link href="~/Content/EasyUI/themes/default/easyui.css" rel="external nofollow" rel="stylesheet" /> <link href="~/Content/EasyUI/themes/icon.css" rel="external nofollow" rel="stylesheet" /> <script type="text/javascript"> $(function () { //tabs的点击事件 bindTabsEvent(); }); function bindTabsEvent() { $(".detail").click(function () { //拿到点击标题 var title = $(this).text(); //拿到点击的url var url = $(this).attr("url"); //判断标签是否存在 var isExt = $("#tt").tabs("exists", title); //如果存在则选中 if (isExt) { $("#tt").tabs("select", title); //选中 return; } //不存在就添加标签 $("#tt").tabs("add", { title: title, content: createTabContent(url), closable:true }); }); } function createTabContent(url) { return '<iframe src="' + url + '" scrolling="no" frameborder="0" width="100%" height="100%"></iframe>'; } </script> </head> <body class="easyui-layout"> <div data-options="region:'north',border:false" >north region</div> <!---------左侧布局------------------------------------> <div data-options="region:'west',split:true,title:'West'" > <div class="easyui-accordion" > <div title="新闻管理" data-options="iconCls:'icon-ok'" > <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="detail" url="/AdminNewInfo/Index">新闻管理</a> </div> <div title="评论管理" data-options="iconCls:'icon-ok'" > <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="detail" url="/CommentInfo/Index">评论管理</a> </div> </div> </div> <!---------左侧布局结束------------------------------------> <div data-options="region:'south',border:false" >south region</div> <!--------------中间布局开始----------------> <div data-options="region:'center',title:'Center'" > <div class="easyui-tabs" fit="true" id="tt"> <div title="欢迎使用"> <h2 >欢迎!</h2> <h2 > Welcome !</h2> </div> </div> </div> <!--------------中间布局结束---------------> </body> </html>
看完了这篇文章,相信你对“MVC+EasyUI+三层新闻网站建立tabs标签的示例分析”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。