我有一个要加载到 jquery ui 对话框中的 Html 页面,我需要将会话 ID 插入到静态加载的 html 中以进行页面加载处理。我的第一个想法是使用 .Data() 并以这种方式添加 var 但我认为在 .Load(page.html) 调用中不可能?
所以我尝试了很多不同的方法,但这里是 gyst:
<div id="cs0" title ="Add/Edit Licence periods"></div>
$('#cs0').hide();
//load the page into the the div
$('#cs0').load("/Periods.html");
//edit inner html of one of the divs in the loaded page
$('#cs0').innerHTML.getElementById("MyDiv").innerHTML = sessionid;
$('#il0').click(function () {
$('#cs0').dialog({
autoOpen: true,
maxWidth: 1000,
maxHeight: 800,
width: 700,
height: 300,
modal: true,
});
});
我也尝试过使用数据,但无法让它工作:(有什么想法吗?