0

我正在尝试根据另一个菜单中的选择填充第二个选项选择菜单。问题是,我无法让 jQuery 执行它。这是我的代码

<head>
<script type="text/javascript">
$(document).ready(function()
{
$("#add_subject").change(function()
{
    var id=$(this).val();
    var dataString = 'id='+ id;

    $.ajax
    ({
        type: "POST",
        url: "inc.add.content.populate.php",
        data: dataString,
        cache: false,
        success: function(html)
        {
            $("#add_content").html(html);
        } 
    }); 
});
});
</script>
</head>

<div class="grid_10">
    <div class="box round first">
        <h2>Title</h2>
        <div class="block"> 
        <form method="post">
            <table class="form">
                 <tr>
                    <td>
                        <select id="add_subject" name="add_subject">
                            <option value="1">first option</option>                           
                        </select>
                        <select id="add_content" name="add_content">
                        </select>
                   </td>
                </tr>                
             </table>
        </form>           
        </div>
    </div>
</div>

还有我的 inc.add.content.populate.php 文件

<?php
require_once(BASEDIR.'includes'.DIRECTORY_SEPARATOR.'inc.functions.php');

if($_POST['id'])
{
$id=$_POST['id'];
global $mysqli;

if($query = $mysqli->prepare("SELECT naslov,vsebine_id FROM table_vsebine WHERE predmet_id=?")){
    $query->bind_param('i',$id);
    if($query->execute()){
        $query->bind_result($naslov,$vsebine_id);
        $query->store_result();

        while($row = $query->fetch()){
        echo '<option value="'.$vsebine_id.'">'.$naslov.'</option>';
        }
    }
    }
}
?>
4

2 回答 2

0

您正在尝试访问在应用程序中其他地方定义的常量

PHP 是一种无状态语言,这意味着每个连接都会得到不同的处理。

您可能想要定义BASEDIR, 并且可能DIRECTOR_SEPARATOR在您使用它们的文件中。或者,如果您在多个文件中使用它们,您可以将所有定义放入一个文件中,并在需要时包含它。

于 2013-09-14T19:59:35.727 回答
0

您正在直接运行inc.add.content.populate.php文件并BASEDIR在您的index.phpso中定义,在这种情况下,您BASEDIR未在此脚本中定义,因为index.php未在此ajax调用中执行。

如果你constant在一个单独的文件中定义所有你的东西,比如说,constants.php并且只是在其中使用/包含它,index.php那么inc.add.content.populate.php它可以很容易地完成,比如

require_once('path/to/file/constants.php');
require_once(BASEDIR.'includes'.DIRECTORY_SEPARATOR.'inc.functions.php');
// ...
于 2013-09-14T19:42:36.017 回答