我有两页 - “第 1 页”和“第 2 页”。在第 1 页上有一个文本框,其值为 100,末尾有一个按钮。
通过按下按钮,我希望 javascript 将文本框的值保存在全局 (?) 变量中并跳转到第 2 页。使用“window.onload”,我想要第二个 Javascript 函数来提醒保存在第 1 页的值。
这是我的 Javascript 代码:
<script type="text/javascript">
var price; //declare outside the function = global variable ?
function save_price(){
alert("started_1"); //just for information
price = document.getElementById('the_id_of_the_textbox').value;
alert(price); //just for information
}
<script type="text/javascript">
function read_price(){
alert("started_2");
alert(price);
}
在“第 1 页”上,我有这个发送按钮:
<input class="button_send" id="button_send" type="submit" value="Submit_price" onclick="save_price();"/>
它启动 Javascript 函数并将我正确重定向到我的 page2。
但是在第二页上:
window.onload=read_price();
我总是得到全局变量价格的“未定义”值。
我已经阅读了很多关于这些全局变量的内容。例如在此页面:全局变量问题..但我无法让它工作......
为什么这不起作用?