jquery/ajaxスクリプトを使用して2番目のドロップダウンボックスを変更するドロップダウンボックスを取得しようとしています。Firebug は Jquery が動作していることを示していますが、私のスクリプトはまったく表示されません。
<script type="text/javascript">
function ajaxfunction(parent)
{
$.ajax({
url: '../functions/process.php?parent=' + parent;
success: function(data) {
$("#sub").html(data);
}
});
}
</script>
process.php は単なる MySQL クエリです (動作します)。
最初のドロップダウン ボックスには MySQL クエリが入力されています
<select name="front-size" onchange="ajaxfunction(this.value)">
//Query
</select>
そして、2番目のドロップダウンボックスは
<select name = "front-finish" id="sub">
</select>
どうすればこれを解決できますか?