使用另一页上的按钮更改值

时间:2015-01-24 14:33:40

标签: javascript html function button

我用html / css / js做日历。 我有一个index.html:

<html>
<head>
    <title>App calendario</title>
    <link rel="stylesheet" href="style.css" type="text/css" />
    <script src="myfunc.js"></script>
</head>
<body>
<form> 
<button class="button-customize" onclick="MyFunction(4)" type="button">4 - 10</button> 
</form>
</body>

js是:

function MyFunction(x) {
window.open("settimana.html","_self");
document.getElementById("Giorno_1").innerHTML = x;}

和另一个页面settimana.html是:

<html>
<head>
    <title>Settimana</title>
    <link rel="stylesheet" href="./style.css" type="text/css" />
    <script src="myfunc.js"></script>
</head>
<body>
<form action="#"> 
 <button class="button-customize" type="submit" id="Giorno_1" name="Giorno_1">Giorno 1</button> 
 </form>
 </body>
 </html>

问题是页面settimana.html中按钮的值没有变化。为什么?请帮帮我。

1 个答案:

答案 0 :(得分:0)

您需要说明您的脚本应将其数据发送到服务器的位置。所以你需要像

这样的东西
<from method="POST" action="target.php">......</form>

iMo你需要有一个服务器脚本,它通过&#34; $ _ POST&#34;消耗你的公式数据。全局(用PHP)。我想使用纯HTML,您只需发送包含表单数据的电子邮件即可。

http://php.net/manual/de/reserved.variables.post.php