老师布置的作业,需要用easy ui做界面,现在需要点击首页的按钮,弹出一个添加页面,这个怎么做,求大神帮忙解答,谢谢!
挺简单的 首先你要写一个按钮
<a href="#" onclick="Add()" class="easyui-linkbutton l-btn" iconcls="icon-search">添加</a>
然后你需要写这个function
function Add() { $('<div></div>').dialog({ id: "Add", title: '添加', width: 550, height: 500, closed: false, cache: false, href: '/Add?R=' + Math.random()+'&type=Add', modal: true, onClose: function () { $(this).dialog('destroy'); } }); }
href: '/Add?R=' + Math.random()+'&type=Add',这一行的链接是什么意思,谢谢帮忙解答
@小感伤3: 就是href 我用的MVC加 easyui href 是连接控制器的。
[HttpGet] public ActionResult Add(string type) { ViewBag.type = type; return View(ShowAdd()); }
这里 ShowAdd()就是展示添加页面的方法 比如绑定一些下拉框之类的。
href: '(这里写地址/方法)/Add?R=' + Math.random()+'&type=Add(按钮的方法名)',
@橘色大耳朵猫: 谢谢你今天的帮忙,在此表示感谢
@小感伤3: 客气啦。