jquery uiダイアログにロードしているHtmlページがあります。ページのオンロード処理のために、静的にロードされたhtmlにセッションIDを挿入する必要があります。私の最初の考えは、.Data() を使用してそのように var を追加することでしたが、.Load(page.html) 呼び出しでは可能だとは思いませんか?
だから私はこれをさまざまな方法でやろうとしましたが、ここに要点があります:
<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,
});
});
私もデータを使用しようとしましたが、これを機能させることができません:(何か考えはありますか?