0

親ページから開かれているポップアップ ウィンドウで入力要素の値を見つけようとしています。

私のコードは以下です。入力から pc 値を取得できません。

<html>
<head>
<? 
$pid=$_GET['pid'];
$cart_url = '../cart.php?action=add&p='.$pid;
echo $cart_url;
?>  
</head>

<body>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function sendValue(val){
window.opener.document.getElementById('details_<?=$pid?>').value = val;
window.opener.location.href='<?php echo $cart_url; ?>&pc='.concat(val);
window.close();
window.location.reload();
}
</script>
<form name="selectform">
<label>Enter Price:</label>
<input id="1" name="details_<?=$pid?>" type="text"></input>
<input   type="Submit"  onsubmit="sendValue(this.value)"></input>
</form> 
</body>
</html> 
4

3 に答える 3

1

コード:

<input id="1" name="details_<?=$pid?>" type="text"></input>
<input   type="Submit"  onsubmit="sendValue(this.value)"></input>

への変更:

  <input id="details" type="text">
  <input type="button" value='Send...' onclick="sendValue(document.getElementById('details').value)">
于 2013-05-20T02:07:43.807 に答える
0

からあなたのinput箱を作るだけですid

<input id="1" name="details_<?=$pid?>" type="text"></input>

<input id="details_<?=$pid?>" name="details_<?=$pid?>" type="text"></input>

それはうまくいくはずです

于 2013-05-20T01:53:32.707 に答える