繁体   English   中英

在JavaScript中使用MySQL数据库中的数据填充下拉列表

[英]populate drop down lists with data from mysql database in javascript

我正在创建一个表格,它要求应聘者发布有关其以前的教育历史的信息-这是表格的屏幕截图以及随附的代码!

[IMG] http://i58.tinypic.com/ege104.png[/IMG]

[IMG] http://i59.tinypic.com/fxuf5w.png[/IMG]

这是我的JavaScript代码:

<script>
function removeFields1(){
//var container1 = document.getElementById("container1");
//container1.removeChild(input);


}
    function addFields1(){
        var container = document.getElementById("container1");

        var option = document.createElement("select"); //? how do I fix this up


        //option.text = "Kiwi";
        //container.add(option);
        container.appendChild(option);//? how do I fix this up


        container.appendChild(document.createTextNode("Address: "));//Address form

        var input = document.createElement("input");
        input.type = "text";
        input.id = "instaddress";
        input.name = "instaddress";
        input.size = 20;
        input.maxlenth = 20;
        container.appendChild(input);

        container.appendChild(document.createTextNode("From: "));   // which year the person started        
        var from = document.createElement("input");                 // studying in that institution
        from.type = "text";
        from.id = "from";
        from.name = "from";
        from.size = 4;
        from.maxlenth = 4;
        container.appendChild(from);

        container.appendChild(document.createTextNode("To: "));     // which year the person finished 
        var to = document.createElement("input");                   // studying in that institution
        to.type = "text";
        to.id = "to";
        to.name = "to";
        to.size = 4;
        to.maxlenth = 4;
        container.appendChild(to);

        container.appendChild(document.createTextNode(" Did You Graduate?: Yes"));    // radio buttons whether someone graduated or not          

        var grad = document.createElement("input");
        grad.type = "radio";
        grad.id = "graduate";
        grad.name = "graduate";
        grad.value = "yes"; //yes value for radio button
        container.appendChild(grad);

        container.appendChild(document.createTextNode(" No "));
        var grad1 = document.createElement("input");
        grad1.type = "radio";
        grad1.id = "graduate";
        grad.value = "no"; //no value for radio button
        container.appendChild(grad1);

        container.appendChild(document.createTextNode(" Certificate: "));

        var certificate = document.createElement("input");
        certificate.type = "text";
        certificate.id = "certificate";
        certificate.name = "certificate";
        input.size = 25;
        input.maxlenth = 25;
        container.appendChild(certificate);

        var addInstitution = document.getElementById(" Add");
        var removeInstitution = document.getElementById("Remove");
     //  container.removeChild(addInstitution);

        //create and insert input/text

        //create and insert button
        addInstitution = document.createElement("a");
        addInstitution.id="Add"
        addInstitution.href="#";
        addInstitution.text="Add";
        addInstitution.onclick=function(){addFields1();};

        removeInstitution = document.createElement("a");
        removeInstitution.id="Remove"
        removeInstitution.href="#";
        removeInstitution.text=" Remove";
        container.appendChild(addInstitution);
        container.appendChild(removeInstitution);
        //removeInstitution.onclick=function(){removeFields1();};
        //
        container.appendChild(document.createElement("br"));

    }

</script>

以下是表单字段:

    <body>
        <form>

            <div id="container1">
        <select name="institution" id="institution">
<option <?php if(isset($_POST['institution'])) { echo $_POST['institution']; } ?>>Select Institution</option>
<?php
$sql1a = "SELECT * FROM institution ORDER BY institution asc";
$smt1a = $dbs->prepare($sql1a);
$smt1a -> execute();
while($row1a=$smt1a->fetch(PDO::FETCH_ASSOC))
{
if($row1a['institution']==$_GET['id3'])
echo("<option selected value=$row1a[institution]>$row1a[institution]</option>");
else
echo("<option value=$row1a[institution]>$row1a[institution]</option>");
}
?>
</select>
Address: <input size="20" type="text" id="instaddress" name="instaddress" maxlength="20" size="20"> From:<input type="text" id="from" name="from" size="4" > To: <input type="text" id="to" name="to" size="4">
Did You Graduate?: Yes<input type="radio" onclick="checkRadio()" id="graduate" name="graduate" value="yes"> No
<input type="radio" onclick="checkRadio()" id="graduate" name="graduate" value="no"> Certificate: <input size="20" type="text" id="certificate" name="certificate" maxlength="25" size="25">

               <a href="#" id="Add" onclick="addFields1()">Add </a><br>
            </div>

        </form>
    </body>

单击addFields1()如何为Javascript部分创建下拉选择菜单?

下拉菜单的PHP代码在下面-菜单中填充了MySQL数据库中的数据。 什么是正确的

 <option <?php if(isset($_POST['institution'])) { echo $_POST['institution']; } ?>>Select Institution</option>
<?php
$sql1a = "SELECT * FROM institution ORDER BY institution asc";
$smt1a = $dbs->prepare($sql1a);
$smt1a -> execute();
while($row1a=$smt1a->fetch(PDO::FETCH_ASSOC))
{
if($row1a['institution']==$_GET['id3'])
echo("<option selected value=$row1a[institution]>$row1a[institution]</option>");
else
echo("<option value=$row1a[institution]>$row1a[institution]</option>");
}
?>
</select>

你们可以帮我解决Javascript代码吗?

这是需要纠正的代码段,以便每次按下“添加”链接时,我都可以使用Javascript函数来下拉菜单列表:

 var option = document.createElement("select"); //? how do I fix this up

 var option = document.createElement("select"); //? how do I fix this up
 //option.text = "Kiwi";
 //container.add(option);
 container.appendChild(option);//? how do I fix this up

你的意思是这样的吗?

var slct = document.createElement("select"); //? how do I fix this up
container.appendChild(slct);//? how do I fix this up

//some php code that is generating js code
<?php
    $sql1a = "SELECT * FROM institution ORDER BY institution asc";
    $smt1a = $dbs->prepare($sql1a);
    $smt1a -> execute();
    while($row1a=$smt1a->fetch(PDO::FETCH_ASSOC))
    {
        echo("var opt=document.createElement(\"option\");\r\n");
        echo("opt.value=$row1a[institution];\r\n");
        echo("opt.text =$row1a[institution];\r\n");
        echo("slct.appendChild(opt);");
    }
?>

slct.value=<?php echo $_GET['id3']; ?>;

希望对您有所帮助/

暂无
暂无

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

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