怎样把在一个PHP页面里提交的内容放到另一个页面里去?
在做一个微信网站,里面有预约内容,但姓名、手机号是在提交页面以外的另一个子页面提交的,现在想把姓名和手机号的提交合并到总的提交页面来。下面这个是提交子页面的内容:<scr...
在做一个微信网站,里面有预约内容,但姓名、手机号是在提交页面以外的另一个子页面提交的,现在想把姓名和手机号的提交合并到总的提交页面来。
下面这个是提交子页面的内容:
<script type="text/javascript">
var from='{$_GPC['from']}';
var returnurl = '{$_GPC['returnurl']}';
cascdeInit('','','');
function saveAddress() {
var realname = $('#realname').val();
var mobile = $('#mobile').val();
var province = $('#sel-provance').val();
var city = $('#sel-city').val();
var area = $('#sel-area').val();
var address = $('#address').val();
if (!mobile) {
alert('请输入您的手机号码!');
return false;
}
if (mobile.search(/^([0-9]{11})?$/) == -1) {
alert('请输入正确的手机号码!');
return false;
}
tip("正在处理数据...");
$.post('{php echo $this->createMobileUrl('address')}', {
'op' : 'post',
'realname' : realname,
'mobile' : mobile,
'province' : province,
'city' : city,
'area' : area,
'address' : address,
'id' : $('#addressid').val()
这是表单显示页面的内容:
<th style="width:80px;">订单号</th>
<th style="width:100px;">姓名</th>
<th style="width:120px;">电话</th>
<th style="width:80px;">支付方式</th>
<th style="width:80px;">配送方式</th>
<th style="width:50px;">运费</th>
<th style="width:100px;">总价</th>
<th style="width:80px;">状态</th>
<th style="width:150px;">下单时间</th>
<th style="width:120px; text-align:right;">操作</th>
</tr>
</thead>
<tbody>
{loop $list $item}
<tr>
<td>{$item['ordersn']}</td>
<td>{$item['username']}</td>
<td>{$item['mobile']}</td>
<td><span class="label label-{$item['css']}">{$item['paytype']}</span></td>
<td>{if empty($item['dispatch'])}自提{else}{$item['dispatch']}{/if}</td>
。。。
该怎样修改,才能把子页面的提交内容合并到主页面上去一次性提交?请高手留qq,我发完整的页面代码。 展开
下面这个是提交子页面的内容:
<script type="text/javascript">
var from='{$_GPC['from']}';
var returnurl = '{$_GPC['returnurl']}';
cascdeInit('','','');
function saveAddress() {
var realname = $('#realname').val();
var mobile = $('#mobile').val();
var province = $('#sel-provance').val();
var city = $('#sel-city').val();
var area = $('#sel-area').val();
var address = $('#address').val();
if (!mobile) {
alert('请输入您的手机号码!');
return false;
}
if (mobile.search(/^([0-9]{11})?$/) == -1) {
alert('请输入正确的手机号码!');
return false;
}
tip("正在处理数据...");
$.post('{php echo $this->createMobileUrl('address')}', {
'op' : 'post',
'realname' : realname,
'mobile' : mobile,
'province' : province,
'city' : city,
'area' : area,
'address' : address,
'id' : $('#addressid').val()
这是表单显示页面的内容:
<th style="width:80px;">订单号</th>
<th style="width:100px;">姓名</th>
<th style="width:120px;">电话</th>
<th style="width:80px;">支付方式</th>
<th style="width:80px;">配送方式</th>
<th style="width:50px;">运费</th>
<th style="width:100px;">总价</th>
<th style="width:80px;">状态</th>
<th style="width:150px;">下单时间</th>
<th style="width:120px; text-align:right;">操作</th>
</tr>
</thead>
<tbody>
{loop $list $item}
<tr>
<td>{$item['ordersn']}</td>
<td>{$item['username']}</td>
<td>{$item['mobile']}</td>
<td><span class="label label-{$item['css']}">{$item['paytype']}</span></td>
<td>{if empty($item['dispatch'])}自提{else}{$item['dispatch']}{/if}</td>
。。。
该怎样修改,才能把子页面的提交内容合并到主页面上去一次性提交?请高手留qq,我发完整的页面代码。 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询