认为这很容易,但事实证明并非如此-至少对我来说。
如果我的链接被用户单击,我想将值(字符串)传递给另一个页面。
代码示例:
On page one:
<a href="secondPage.php" value="sun" onclick="setWord(this.value)">click me</a>
On page two:
<p> The <span id="passedWord"></span> is shining!</p>
Javascript:
function setWord(x) {
document.getElementById("passedWord").innerHTML = x;
}
有什么技巧可以解决我的问题吗?
答案 0 :(得分:1)
使用此:
//On page one:
<a href="secondPage.php?value=sun">click me</a>
//On page two:
//you can get the value by using this
<?php
$value = $_GET["value"];
?>
The <span id="passedWord"><?php echo $value; ?></span> is shining!