我正在尝试使用 jQuery Ajax 从 MySQL 获取数据到我的客户端页面。我写了这段代码:
<html>
<head>
<title>Salman Test Ajax Select Box</title>
<script src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#parent_cat").change(function() {
$.post("func.php", function(data, status) {
$("#ajax").html(data);
});
});
});
</script>
</head>
<body>
<form method="post">
<select id="parent_cat" name="parent_cat">
<option disabled="disabled" selected="selected">Select a Category</option>
<option id="opt" value="1">1</option>
<div id="ajax"></div>
</select>
<span id="wait_1" style="display: none;"> <img src="ajax-loader.gif" alt="Please Wait"> </span>
</form>
</body>
但是 DIV 中没有输出,但是如果我将行更改$('#ajax').html(data);
为alert(data);
它可以完美运行。