我有一个主要的选择标签“ category”,onchange会调用一个php脚本来“呼应”一个新的选择标签:

   <select id="category" onchange="showme(this);">
       <option value="txt">text</option>
       <option value="img">image</option>
       <option value="htm">html</option>
       <option value="aud">Audio</option>
   </select>


这是调用PHP脚本的函数:

function showme(str) {
    var e = document.getElementById("country");
    var str = e.options[e.selectedIndex].value;
    if (str=="") {
        document.getElementById("channels").innerHTML="";
        return;
    }
    if (window.XMLHttpRequest) {
       // code for IE7+, Firefox, Chrome, Opera, Safari
       xmlhttp=new XMLHttpRequest();
    } else { // code for IE6, IE5
       xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function() {
        if (this.readyState==4 && this.status==200) {
            document.getElementById("channels").innerHTML=this.responseText;
        }
    }
    xmlhttp.open("GET","lstavai.php?q="+str,true);
        xmlhttp.send();
    }


这是我的PHP脚本:

<?php
    $q = $_GET['q'];
    $files = glob('../dsx/'.$q.'/*.txt');
    echo '<select id="Subme" onchange="showSubme(this);">';
    foreach($files as $file) {
        $file = pathinfo($file);
        echo '<option value="'.$file['basename'].'">'.$file['filename'].'</option>';
    }
    echo '</select>';
?>


因此,Subme Select标记在PHP脚本中为echoed,并加载到div channels中,一切都很好,但PHP脚本为其分配了功能
       onchange =“ showSubme(this);”
不管用 :-(

这个showSubme函数与showme(str)完全相同(如上所述),并将触发类似的PHP脚本。

为什么它不起作用?我在这里错过了什么吗?
我感谢所有答案!

最佳答案

您可能想在代码中查看一下:

var e = document.getElementById("country");


在您的html中,您调用了id类别,而不是国家/地区。

<select id="category" onchange="showme(this);">


快乐编码,Max

10-08 09:29