0

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);完璧に機能します。

4

1 に答える 1