简体   繁体   English

尝试根据前2个选择填充选择

[英]Trying to populate select based on previous 2 selection

Can You Please Find Out The Problem In The Following Code I am trying to populate 1 select option based on previous 2 select options. 您能否在下面的代码中找出问题,我试图根据前两个选择选项填充1个选择选项。 For example, you will select option 1 and then select option 2 based on those 2 options I will get 3rd option. 例如,您将选择选项1,然后基于这两个选项选择选项2,我将获得第三个选项。 Here is my jquery part 这是我的jQuery部分

/*This Is Basically My Jquery Part Which will Take 2 values from selects*/
$(".asset").change(function(){

    var id=$(this).val();
    console.log(id);
    var dataString1 = 'id='+ encodeURIComponent(id);
    console.log(dataString1);

    $(".amc").change(function(){

        var aid=$(this).val();
        console.log(aid);
        var dataString2 = 'aid='+ encodeURIComponent(aid);
        console.log(dataString2);

        //console.log(data);
        $.ajax({
            type: "POST",
            url: "fetch.php",
            data : {dataString1: id,dataString2: aid},
            cache: false,
            success: function(html)
            {
                $(".scheme").html(html);
            } 
        });

    });

});

Here is the fetch part 这是获取部分

<?php
include('dbconfig.php');


if($_POST['id'] && $_POST['aid'])
{

    $id=$_POST['id'];
    $aid=$_POST['aid'];



    $stmt = $DB_con->prepare("SELECT * FROM Master_MutualFundMasters WHERE AssetClassID=:id AND AMCID = :aid");
    $stmt->execute(array(':id' => $id));
    $stmt->execute(array(':aid' => $aid));


    ?><option selected="selected">Select City :</option>
    <?php while($row=$stmt->fetch(PDO::FETCH_ASSOC))
    {
        ?>
        <option value="<?php echo $row['WW_UniqueInvestmentCode']; ?>"><?php echo $row['PrimarySchemeName']; ?></option>
        <?php
    }
}
?>

When I check my console it is showing me the data but its not passing on next page 当我检查控制台时,它向我显示数据,但未在下一页传递

You should use select at beginning. 您应该在开始时使用select。
Example: 例:

<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="vw">VW</option>
  <option value="audi" selected>Audi</option>
</select>
since you are asking 
In your console it is showing me the data but its not passing on next page means (fetch.php).
then you can do-

   $.ajax({
            type: "POST",
            url: "fetch.php",
            data : {"id":dataString1,"aid":dataString2},
            cache: false,
            success: function(html)
            {
                $(".scheme").html(html);
            } 
        });

and in fetch.php page.
if($_POST["id"] && $_POST["aid"])
{

    $id=$_POST["id"];
    $aid=$_POST["aid"];

    //write ur code here...
}   

I Hope this help u.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM