0

2 つの配列と変数があります。項目を変数にプッシュし、2 回目のクリックでそれを配列に追加できます。ただし、その配列からアイテムを移動して変数に戻し、変数を別の配列に移動する別のボタンがあります。私のコードは最初のセクションで動作しますが、私の関数は 2 番目のセクションでロードされます。

機能していないように見えるのはこのセクションです

<INPUT type=button value="Back" onClick='txtPop.value = popBackStack();showStack(theList);pushForStack(curUrl);
showStack2(theList2);'>

コード全体は次のとおりです。

<HTML>
<HEAD>
<TITLE>Stacking up!</TITLE>
<SCRIPT>

var backStack = new Array(); 
var forStack = new Array();
var curUrl = document.getElementById("txtPop");

function pushStack(newVal) {
backStack.push(curUrl);
curUrl = newVal;
}

function pushForStack(newVal) {
CurUrl = newVal;
forstack.push(curUrl);
}

function popBackStack() {
var popVal = backStack.pop();  
if (popVal == undefined)
  return "Nothing left!";
else
return popVal
}

function popForStack() {
var popVal = forStack.pop();
if (popVal == undefined)
  return "Enter a new URL";
else
return popVal;
}

function showStack(theSelect){
theSelect.options.length = 0;
for (var i = 0; i < backStack.length; i++){
  var theOption = new Option(backStack[i]);
  theSelect.options[theSelect.options.length] = theOption;
}
}

function showStack2(theSelect){
theSelect.options.length = 0;
for (var i = 0; i < forStack.length; i++){
  var theOption = new Option(forStack[i]);
  theSelect.options[theSelect.options.length] = theOption;
}
}
 </SCRIPT>


</HEAD>
<BODY>
<FORM>
<table width="104%" height="364" border="5" cellpadding="3" cellspacing="3">
<tr>
<th width="30%" height="78" scope="col"><p>
<INPUT type=button value="Back" onClick='txtPop.value =     popBackStack();showStack(theList);pushForStack(curUrl);
showStack2(theList2);'></p></th>
<th width="46%" scope="col"><p>
<center>
<INPUT type=text name=txtPush>
<INPUT type=button value="Push"   onClick='pushStack(txtPush.value);txtPush.value="";txtPop.value = curUrl;   showStack(theList);'>
</center>
</p></th>
<th width="24%" scope="col"><p><INPUT type=button value="Forward" onClick="txtPop.value      = popBackStack();showStack2(theList2);"></p></th>
</tr>
<tr>
<td><p><center>
<SELECT name="theList" size=12>
</SELECT>
</center></p></td>
<td><p><center><INPUT type=textki name=txtPop size=25></center></p></td>
<td><center>
<SELECT name="theList2" size=12>
</SELECT>
</center></td>
</tr>
</table>
</FORM>
<p>&nbsp;</p>
</BODY>
</HTML>
4

1 に答える 1

1

curUrl を新しい配列に変換して、backStack から curUrl にポップしてから、curUrl を forStack にポップしてみてください。

curUrl = new Array ()
于 2013-01-13T23:44:49.573 に答える