これはページhtml1の私のコードです
<fieldset id="bill1">
<div style="font-size:9px" id="serviced"><b>Service :</b></div>
<div style="font-size:9px" id="tratyped"><b>Type of Transport :</b></div>
<div style="font-size:9px" id="custyped"><b>Type of Client</b></div>
<div style="font-size:9px" id="datepickerd"><b>Date :</b></div>
<div style="font-size:9px;display:none" id="timed"><b>Time :</b></div>
<div style="font-size:9px" id="departured"><b>Departure Address :</b></div>
<div style="font-size:9px" id="destinationd"><b>Arrival Address</b></div>
</fieldset>
これらのdivのinnerhtml値は、実行時に変更されます。
これらの情報を別のページhtml2で送信または表示するにはどうすればよいですか。
「php1」ページに含まれている(「html2」を含む)「html1」から「html2」ページ内のフィールドセットコンテンツを提供できるようにしたい。
コーディングを手伝ってください、またはあなたの提案をしてください、私はそれを自分でコーディングしようとします。
ありがとう!
編集............
fare.htmlの内部
<fieldset id="bill2" style="padding-top:0">
<div style="font-size:9px" id="passengerd"><b>No. of Passengers :</b></div>
<div style="font-size:9px" id="shairwelld"><b>No. of Chariwells :</b></div>
<div style="font-size:9px" id="babycd"><b>No. of Baby Chairs :</b></div>
<div style="font-size:9px" id="companiond"><b>No. of Companions :</b></div>
</fieldset>
pay.htmlで
<fieldset id="bill2">
</fieldset>
ヘッドタグ内のjqueryコードを次のように使用しました
<script src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#bill2').load('/fare.html #bill2')
})
</script>
上記のコードは機能します...
フィールドセットのデフォルトのコンテンツをロードします。ただし、実行時に生成された値はロードされません。これを修正する方法はありますか?
ありがとう!