请教如何获取easyui-combobox下拉菜单的多个选中值
1个回答
展开全部
如何获取easyui-combobox下拉菜单的多个选中值
下面是ajax代码:
function showProvince($pid){
$.post("city.php",{pid:$pid},
function(data){
$(".city").html(data);
});
}
function showCity(cid){
$.post("shi.php",{cid:cid},
function(data){
$(".xian").html(data);
});
}
下面是两个php文件。主要是查询数据库的:
<?php
$con = @mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
$cid = $_POST['cid'];
$sql = "SELECT * FROM shi where cid = $cid";
下面是ajax代码:
function showProvince($pid){
$.post("city.php",{pid:$pid},
function(data){
$(".city").html(data);
});
}
function showCity(cid){
$.post("shi.php",{cid:cid},
function(data){
$(".xian").html(data);
});
}
下面是两个php文件。主要是查询数据库的:
<?php
$con = @mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
$cid = $_POST['cid'];
$sql = "SELECT * FROM shi where cid = $cid";
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询