gpt4 book ai didi

php - 使用 jquery-select2 动态依赖下拉列表

转载 作者:行者123 更新时间:2023-11-29 11:56:35 27 4
gpt4 key购买 nike

我正在使用 this 制作 3 个动态相关下拉列表(选择)教程。我也在使用jquery-select2以增强用户体验。第一个选择是静态的(它只有三个值),其他两个来自 mysql 表。

问题是:
当我在第一个选择列表中进行选择时。第二个变成简单的(不可选择的)类(class)列表,“选择列表”消失了。有问题的页面已上线 here .

当我禁用 jquery-select2 插件时,选择列表工作正常。随着需要插入的类(class)增多,类(class)列表将会变长。因此,jquery-select2 用于增强用户体验,以便用户可以开始在搜索框中键入内容,并且相应地填充类(class),而无需向下滚动长列表。

我不知道如何解决这个问题。

编辑

这是index.php

<?php include_once 'includes/dbconfig.php'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Dynamic Dependent Select Box using jQuery and PHP</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="js/select2-bootstrap.css">
<link rel="stylesheet" type="text/css" href="js/select2.css">

<script src="js/modernizr-2.6.2.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.steps.js"></script>
<script src="js/select2.min.js"></script>

<script type="text/javascript">
$(document).ready(function()
{

$(".cr_coursetype").change(function()
{
var id=$(this).val();
var dataString = 'id='+ id;

$.ajax
({
type: "POST",
url: "get_course.php",
data: dataString,
cache: false,
success: function(html)
{
$(".cr_coursedescription").html(html);
}
});
});


$(".cr_coursedescription").change(function()
{
var id=$(this).val();
var dataString = 'id='+ id;

$.ajax
({
type: "POST",
url: "get_coursetitle.php",
data: dataString,
cache: false,
success: function(html)
{
$(".cr_coursetitle").html(html);
}
});
});

$(".cr_coursedescription").change(function()
{
var id=$(this).val();
var dataString = 'id='+ id;

$.ajax
({
type: "POST",
url: "get_subject.php",
data: dataString,
cache: false,
success: function(html)
{
$(".cr_coursesubject").html(html);
}
});
});
});
</script>

</head>

<body>
<div class="container">
<h2>Step</h2>
<section data-step="5">
<h2>Course Details:</h2>
<p>Please provide following information regarding your course. All fields are compulsory and are required.</p>
<hr>

<!--Local Select field-->
<div class="form-group">
<label for="cr_coursetype" class="col-lg-4 col-md-4 col-sm-4 col-xs-4 control-label">Course Type:</label>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
<select name="cr_coursetype" class="cr_coursetype" data-allow-clear="true" tabindex="1" placeholder="Select Course Type">
<option selected="selected">--Select coursetype--</option>
<option value="1">Certificate</option>
<option value="2">Diploma</option>
<option value="3">Degree</option>
</select>
</div>
</div>

<!--Dynamic Select field-->
<div class="form-group">
<label for="cr_coursedescription" class="col-lg-4 col-md-4 col-sm-4 col-xs-4 control-label">Course Description:</label>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
<select name="cr_coursedescription" class="cr_coursedescription" data-allow-clear="true" tabindex="2" placeholder="Select Course">
<option selected="selected" >--Select Course--</option>

</select>

</div>
</div>


<div class="form-group">
<label for="cr_coursetitle" class="col-lg-4 col-md-4 col-sm-4 col-xs-4 control-label">Course Title:</label>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
<select name="cr_coursetitle" class="cr_coursetitle" data-allow-clear="true" tabindex="3" placeholder="Select Course Title">
<option selected="selected">--Select Title--</option>

</select>
</div>
</div>


<div class="form-group">
<label for="cr_coursesubject" class="col-lg-4 col-md-4 col-sm-4 col-xs-4 control-label">Special Subject:</label>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
<select name="cr_coursesubject" class="cr_coursesubject" data-allow-clear="true" tabindex="4" placeholder="Select Course Subject">
<option selected="selected">--Select Subject--</option>

</select>

</div>
</div>
</div>

</section>
</div>

<script>
//disabled jquery-select
/*$('select').select2({
dropdownAutoWidth : false
});*/
</script>

</body>
</html>

这里是 get_course.php

<?php include('includes/dbconfig.php'); 
if($_POST['id'])
{
$id=$_POST['id'];

$stmt = $DB_con->prepare("SELECT * FROM lt_coursedescription WHERE CourseType=:id");
$stmt->execute(array(':id' => $id));
?><option selected="selected">Select Course :</option><?php
while($row=$stmt->fetch(PDO::FETCH_ASSOC))
{
?>
<option value="<?php echo $row['CourseDescriptionID']; ?>"><?php echo $row['CourseDescriptionLong']; ?></option>
<?php
}
}
?>

我希望这有助于理解这个问题。

最佳答案

原始 <select> 上的类(class)复制到<div>由 Select2 生成,因此您不应期望获得原始 <select>只需使用类选择器即可。

现在发生的事情是您正在设置 .html() <div>的而不是 <select> ,这就是它不再正确显示的原因。而不是做

$(".cr_coursedescription").html(html);

你应该尝试一下

$("select.cr_coursedescription").html(html);

所以它只得到 <select>元素。

关于php - 使用 jquery-select2 动态依赖下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33106176/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com