我在页面A中点击按钮
var url_str = '/note/LookAlreadyAuthorView?userid=' + id; $('#showhasauthor').load(url_str, function () { $(this).dialog({ title: '查看已有权限', modal: true, loadingMessage: '正在加载...', buttons: [{ text: '提交', iconCls: 'icon-ok', handler: function () { // $('#c_form').submit(); } }, { text: '取消', handler: function () { // $('#c_dlg').dialog('close'); } }] }); }).show();
其中
LookAlreadyAuthorView是显示这个页面 在这个页面的$(function(){//在这里初始化});中初始化页面 访问另一个返回json的action 然后填充这个页面的datagrid 可在A页面怎么load不到这个页面呢 A页面容器
<div id="showhasauthor" class="easyui-layout" fit="true"> </div>
不好意思 没分了 求谅解 求帮忙 初学jqueryeasyui
layout支持load函数不? 是不是给里面加个panel,通过panel去href指定下?
已经解决了 谢谢
这。。问题是什么?
问题就是我要加载个页面过来 结果页面过来了 却没显示在该显示的容器里面
@Ganler1988: 你应该这么写吧:
$('#showhasauthor').load(url_str, function (data) { $(data).dialog({……
试试吧,后面的我就不说了。