我有3页,第j页使用jQuery移动脚本:
<form id="form5" name="form5" method="post" action="jsearch-email.php">
<input type="search" name="email" id="email" value="" placeholder="Search email only" />
</form>
第B页甚至没有jquery移动脚本,jquery样式存在:
$email = $_REQUEST['email'];
$k == 1;
while($row = mysql_fetch_array($rs)) {
?>
<form name="form<?php echo $k; ?>" id="form<?php echo $k; ?>" data-ajax="false" method="post" action="jsearch-email-action.php">
<input type='hidden' name='cid' value='<?php echo $row[0] ?>'>
<?php echo $row[1]==1 ? "<input type='checkbox' name='unsubscribe' value='1' checked='checked'>" : "<input type='checkbox' name='unsubscribe' value='1'>" ?>
<?php echo $row[2]==1 ? "<input type='checkbox' name='invalid' value='1' checked='checked'>" : "<input type='checkbox' name='invalid' value='1'>" ?>
<input type="submit" name="submit">
</form>
<?php
$k++;
}
?>
第C页:
$cid = $_REQUEST['cid'];
echo $cid;
当页面B采用jQuery样式时, $cid
什么都没有,但我希望它是jQuery样式的。刷新页面B后,页面B显示基本的html样式,$cid
可以在页面B中接收数据。
有谁知道为什么会这样?
答案 0 :(得分:0)
更改此行
<form id="form5" name="form5" method="post" action="jsearch-email.php">
到这个
<form id="form5" name="form5" method="post" data-ajax="false" action="jsearch-email.php">