这是一个简单按钮的代码。
<input value="Download" type="button" onclick=" inccount();" />
这就是这样inccount();
做的:
function inccount() {
var a = parseInt(document.getElementById("num").value);
document.getElementById("num").value = a + 1;
}
如您所见,此函数将输入字段上的数字加 1 num
。我想把这个号码保存在我的服务器上,但是如果我用这个<form>
标签调用一个 php 脚本,页面就会改变。
count
我想在不离开当前页面的情况下将内容保存在我的服务器上。我谁能做到?
我编写了这个简单的 PHP 脚本来保存输入字段的内容(称为num
):
<?php
$file = '/dat/count.txt';
$current = $_GET["num"];
file_put_contents($file, $current);
?>