我有一个在不同文件中生成的下拉菜单。它是通过 while 循环生成的,我想添加一个静态值( Select contract )。
现在下拉菜单如下所示:
1234
4321
2323
3232
我想让它像这样:
Select contracr
1234
4321
2323
3232
这是我在 index.php 中的代码:
<select id="text2" name="text2">
</select>
这是我在 process.php 中的代码(生成项目的地方):
<?php
$selectedKey = $_GET['selected_key'];
$query = "SELECT * FROM `1 received` WHERE Key = '".$selectedKey."'";
$run = mysql_query($query);
while($row = mysql_fetch_assoc($run)) {
echo "<option value='".$row['Number']."'>".$row['Number']."</option>";
}
?>
阿贾克斯代码:
<script>
$("select#select2").change(function(){
$.ajax({
type: "GET",
url: "process.php",
data: "selected_key=" + $(this).val(),
success: function(result) {
$("select#text2").html(result);
}
});
});
</script>