我有一个带有onchange事件的selectbox来更新来自另一个文件的内容。它工作正常。 但我想做的是当我从我的选择框中选择一些内容时,同时更新两个不同div中的内容。
所以我添加了另一个类似于第一个的函数,并将其添加到标记中的onchange中。
问题是它仍然只更新其中一个。 我究竟做错了什么 ? 或者是否有更简单的方法来同时使用另一个页面的信息更新两个?
主页上的脚本:
<script>
function showFirstDiv(str) {
if (str=="") {
document.getElementById("div1").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 (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("div1").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","infopage.php?info_div1="+str,true);
xmlhttp.send();
}
function showSecondDiv(str) {
if (str=="") {
document.getElementById("div2").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 (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("div2").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","infopage.php?info_div2="+str,true);
xmlhttp.send();
}
主页上的html
<div id="users">
<form>
<select name="users" onchange="showFirstDiv(this.value); showSecondDiv(this.value);">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Joseph Swanson</option>
<option value="4">Glenn Quagmire</option>
</select>
</form>
</div>
<!-- div1 -->
<div id="div1">
<p>info to be listed in div 1 here</p>
</div>
<!-- div2 -->
<div id="div2">
<p>info to be listed in div 2 here</p>
</div>
infopage.php
<?php
if ($_GET[info_div1] == '1')
{
echo 'info 1 to be showed in div 1';
}
if ($_GET[info_div1] == '2')
{
echo 'info 2 to be showed in div 1';
}
if ($_GET[info_div1] == '3')
{
echo 'info 3 to be showed in div 1';
}
if ($_GET[info_div1] == '4')
{
echo 'info 4 to be showed in div 1';
}
if ($_GET[info_div2] == '1')
{
echo 'info 1 to be showed in div 2';
}
if ($_GET[info_div2] == '2')
{
echo 'info 2 to be showed in div 2';
}
if ($_GET[info_div2] == '3')
{
echo 'info 3 to be showed in div 2';
}
if ($_GET[info_div2] == '4')
{
echo 'info 4 to be showed in div 2';
}
?>
答案 0 :(得分:2)
两个函数都使用相同的全局变量xmlhttp
。因此,当您调用第二个函数时,它会使用XMLHttpRequest对象覆盖此变量。您应该使用局部变量,通过var
声明它。
通常,除非您确实需要变量为全局变量,否则应始终将变量声明为本地变量。
function showFirstDiv(str) {
var xmlhttp;
if (str=="") {
document.getElementById("div1").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 (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("div1").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","infopage.php?info_div1="+str,true);
xmlhttp.send();
}
function showSecondDiv(str) {
var xmlhttp;
if (str=="") {
document.getElementById("div2").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 (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("div2").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","infopage.php?info_div2="+str,true);
xmlhttp.send();
}