0

这是我在页面 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>

上面的代码工作...

它加载字段集的默认内容。但不加载运行时产生的值。有没有什么办法解决这一问题?

谢谢!

4

3 回答 3

0

You can generate a hidden form with javascript and submit it. When you want to use GET, you can also add those parameters to the current url with javascript and load this url.

于 2012-09-24T10:27:03.853 回答
0

我喜欢您的“请帮助我编写代码或提供您的建议,我将尝试自己编写代码。

你可以用表格来做,

创建一个带有一些隐藏文件的表单,同时提交该表单获取div内部 html 并使用 javascript 将其作为隐藏值并提交该表单。

于 2012-09-24T10:34:43.183 回答
0

使用jQuery,您可以使用.load()以下方法:

$(document).ready(function(){
    $('#bill2').load('/html1.html #bill2')
})

您要从中加载字段#bill2集的字段集的ID在哪里html2.html#bill2html1.html

于 2012-09-24T10:34:51.103 回答