php 页面 获取不到$.post传过来的值

我在一个页面中有一个selecte,id是selectleimu,是用php代码填写的:<?php$sql="select*fromleimu";$result=mysq... 我在一个页面中有一个selecte,id是selectleimu,是用php代码填写的:
<?php
$sql="select * from leimu";
$result=mysql_query($sql);
echo "<select id='selectleimu' name='selectleimu'>";
while($row=mysql_fetch_array($result)){
echo "<option>$row[name]</option>";
}
echo "</select>";
?>
然后在jquery中有这样的代码
$("#selectleimu").change(function(){
getleimu=$("#selectleimu option:selected").text();
alert(getleimu);
$.post('selectleixing.php',{getleimu:getleimu});
location.href="selectleixing.php";
})
我alert可以得到选择的option值,
但是我到selectleixing.php页面的时候获取不到 传过来的getleimu值
selectleixing.php页面代码如下:
<?php
include('DatabaseConnet.php');
$getleimu=$_POST['getleimu'];
$sql="select * from leixing where leimuname='$getleimu'";
$result=mysql_query($sql);
echo "<select id='selectleixing' name='selectleixing'>";
while($row=mysql_fetch_array($result)){
echo "<option>$row[name]</option>";
}
echo "</select>";
echo $getleimu;
echo "dsadasdasds";
?>
本人初学。请各位大神帮忙
展开
 我来答
匿名用户
推荐于2016-06-01
展开全部
jQuery.post( url, [data], [callback], [type] ) :
相当于无刷新

$.post('selectleixing.php',{getleimu:getleimu}); //提交数据到页面

location.href="selectleixing.php"; //跳转到页面

上述两部完全是分开的,没有任何关系,你先提交数据到那个页面了,然后你再打开这页面(重新打开),肯定是获取不到值得。

getleimu=$("#selectleimu option:selected").text();
window.location.href="selectleixing.php?getleimu="+getleimu;

selectleixing.php页面用$_GET获取参数
更多追问追答
追问
我提交给自己的页面也不行。我主要是想实现类似城市联动的效果。能给个思路么。
追答
你是要在哪个页面做联动效果呢,当前页还是Post后的页面,你要确保那个页面有数据进来。
圣鸾OJ
推荐于2018-03-28 · TA获得超过1629个赞
知道小有建树答主
回答量:1136
采纳率:96%
帮助的人:115万
展开全部
jQuery.post( url, [data], [callback], [type] ) :
相当于无刷新

$.post('selectleixing.php',{getleimu:getleimu}); //提交数据到页面

location.href="selectleixing.php"; //跳转到页面

上述两部完全是分开的,没有任何关系,你先提交数据到那个页面了,然后你再打开这页面(重新打开),肯定是获取不到值得。

getleimu=$("#selectleimu option:selected").text();
window.location.href="selectleixing.php?getleimu="+getleimu;

selectleixing.php页面用$_GET获取参数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
夏霖说中医养生
2014-12-18 · TA获得超过1098个赞
知道小有建树答主
回答量:1173
采纳率:50%
帮助的人:281万
展开全部
那就是参数没有传输过来。

alert 一下 ,数据。
追问
alert什么? 我现在就是想怎么把参数传过来
追答
alert    传过去是 数据。 也可以 alert  返回的数据。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式