在基本php中,我只有0,但我想有一个“ blebleble”。 我非常需要我应该使用PHP而不是JavaScript不知道。
<form name="from" action="" method="post">
<div id="napis" name="napis" onClick="aa();">
blebleble
</div>
</form>
function aa()
{
var xmlhttp;
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
}
};
xmlhttp.open("GET","insert.php?napis="+document.getElementById("napis").value,false);
xmlhttp.send(null);
}