我有两页。接受输入并将其存储到javascript变量的接收器。另一个将接收发送的变量并将其存储到php变量,以便我可以将其转发到数据库。
这是我的第一页的代码:
<html>
<head>
<script type="text/javascript">
var pricee= 0;
var quants;
function queue(num,str){
this.pricee=num;
this.quants=str;
alert(num+" "+str);
}
function alertCurrentNumandStr(){
alert("This is the latest: "+this.pricee+" "+this.quants);
}
function send(num){
this.pricee=num;
}
</script>
</head>
<body>
<ul>
<li><script type="text/javascript">var x=42, y="alive";</script><a href="#" onclick="queue(x, y);">42 Alive</a></li>
<li><a href="#" onclick="alertCurrentNumandStr();">Get</a></li>
<li><script type="text/javascript">var t=10;</script><a href="#" onclick="send(t);">Submit</a></li>
<!--How to send this.pricee, this.quants to .php when clicking the Submit link(above)?-->
</ul>
</body>
</html>
我的第二页上的代码:
<html>
<head>
<?php
$testNum= $_GET['pricee']
?>
</head>
<body>
<?php
echo "<h1>The num value </h1>";
echo $testNum;
?>
</body>
</html>
当我点击提交时,如何将javascript变量传递到第二页?
答案 0 :(得分:2)
您也可以使用简单的GET变量执行此操作。
<a href='yourphpfilename.php?price1=xxx&YOUR2ndvariable=xxx'>Click this</a>
通过转发到下一个php页面,使用
简单地获取此变量$ _ GET [ '价格1']; ...
答案 1 :(得分:1)
将您的发送功能更改为此
function send(quants){
window.location.href = "yourPhpPageUrl.com?price"+pricee+'qunatity' +quants;
}
PHP file
不会有任何变化。试一试
答案 2 :(得分:0)
将li
标记放在form
标记中,如下所示:
<form action="action_page.php" method="GET">
<ul>
<li><script type="text/javascript">var price1=12, itn1="Mar";</script><a href="#" onclick="queue(price1, itn1);">Marinated $12</a></li>
<li><script type="text/javascript">var price2=1, itn2="Kalamay";</script><a href="#" onclick="queue(price2, itn2);">Kalamay $1</a></li>
<li><script type="text/javascript">var price3=5, itn3="coach Yeng";</script><a href="#" onclick="queue(price3, itn3);">Coach Yeng $5</a></li>
<li><a href="#" onclick="getPrice();">Get</a></li>
<li><script type="text/javascript">var quantity=10;</script><a href="#" onclick="send(quantity);">Submit</a></li>
</ul>
<input type="text" name="pricee" value="100">
<br>
Pricee:<br>
<input type="submit" value="Submit">
</form>
我假设你的php页面是 action_page.php
此处method = "GET"
告诉php页面必须接收获取请求的值。
除此之外,结束input type="submit"
代码前的form
表示您使用提交事件来发送li
代码中的值。
您在php代码($_GET("pricee")
)中使用了 pricee 标记。要匹配此请求,您必须拥有name="pricee"
的元素。
我在上面添加了该标记。