时间:2021-05-26
MVC新闻网站建立,完成tabs标签的制作。
首先对 Center 进行一个简单的布局
<!--------------中间布局开始----------------> <div data-options="region:'center',title:'Center'" > <div class="easyui-tabs" style="width:700px;height:250px" fit="true" id="tt"> <div title="欢迎使用"> <h1 style="font-size: 24px;">欢迎!</h1> <h1 style="font-size: 24px; color:red;"> Welcome !</h1> </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" style="height:60px;background:#B3DFDA;padding:10px">north region</div> <!---------左侧布局------------------------------------> <div data-options="region:'west',split:true,title:'West'" style="width:150px;padding:0px;"> <div class="easyui-accordion" style="width:auto;height:auto;"> <div title="新闻管理" data-options="iconCls:'icon-ok'" style="overflow:auto;padding:10px;"> <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'" style="overflow:auto;padding:10px;"> <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" style="height:30px;background:#A9FACD;padding:10px;">south region</div> <!--------------中间布局开始----------------> <div data-options="region:'center',title:'Center'" > <div class="easyui-tabs" style="width:700px;height:250px" fit="true" id="tt"> <div title="欢迎使用"> <h1 style="font-size: 24px;">欢迎!</h1> <h1 style="font-size: 24px; color:red;"> Welcome !</h1> </div> </div> </div> <!--------------中间布局结束---------------></body></html>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
这一次的项目是建立一个小型的新闻发布网站,所以就不需要用一些高大上的框架。三层+MVC+easyUI就足够了。首先:搭建起项目框架其次:到easyui官网去下载
MVC新闻网站建立,完成分页查询数据功能。1、在Model里面建立NewInfo(里面存放的是新闻信息的实体信息)然后在DAL层中建立NewInfoDal(里面
MVC新闻网站建立,实现主页布局。首先建立Home控制器,然后再建立Index视图。和前面登录页面一样也需要引入几个文件。接着就是找到你下载的easyui文件夹
MVC新闻网站建立,完成详情页面的制作。详情就是点击详情后弹出一个div,所以需要现在boby里面先建立一个div标题:作者:发布日期:内容:这个div是需要隐
在多层交换结构中,三层交换机下连多台二层交换机,在三层交换机中定义SVI完成三层转发;在三层交换机与二层交换机之间采用trunk链路,实现各子网的互联,同时三层