这是我在页面 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 中发送或查看这些信息。
我希望能够从“html1”提供页面“html2”内的字段集内容,该页面包含(包括“html2”)到“php1”页面中。
请帮助我进行编码或只是提供您的建议,我将尝试自己编码。
谢谢!
编辑............
里面 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>
我在 head 标签中使用了 jquery 代码作为
<script src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#bill2').load('/fare.html #bill2')
})
</script>
上面的代码工作...
它加载字段集的默认内容。但不加载运行时产生的值。有没有什么办法解决这一问题?
谢谢!