-1

2 つの異なるセレクターの変更時に 2 つの異なるテーブルを作成する必要があり、それぞれが対応するテーブルを指す必要があります。私は別のことを試しましたが、私は間違った方法を見ていると思います。何か案が?ヒントはありますか?

<html>
<head>
<script>

function showUser(str)
{
if (str=="")
  {
  document.getElementById("txtHint").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("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>

</head>

<body>

<form>
<select name="users" onchange="showUser(this.value)">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br />
<div id="txtHint"><b>Person info will be listed here.</b></div>

<form>
<select name="users" onchange="showUser(this.value)">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br />
<div id="txtHint2"><b>Person info will be listed here.</b></div>

</body>
</html> 
4

1 に答える 1

0

次のように、関数に 2 番目のパラメーターを追加できます。

function showUser(str, hintId) { /* ... */}

次のように、現在のヒント div の要素 ID を渡すように追加します。

<select name="users" onchange="showUser(this.value, 'txtHint')">
...
<select name="users" onchange="showUser(this.value, 'txtHint2')">

getElementById次に、パラメーターを使用しているときにコード内の任意の場所で使用しhintIdます。

document.getElementById(hintId).innerHTML="";
于 2012-11-06T18:25:21.830 に答える