我有一个对话框(与面板相同)来填充来自服务器的数据。我需要在请求中添加参数。 http://www.jeasyui.com/documentation/panel.php
var myparams = {type: mytype, section: mysection}
$('#mydialog').dialog({
title: mytitle,
width: $(window).width()/3,
closed: false,
cache: false,
href: href,
queryParams: myparams,
modal: true
});
我尝试使用loader属性和queryParams属性,但两者都不起作用!!有什么想法吗?