我编写了一个 JavaScript 函数以供我的button.onclick()
事件调用,但该函数未被调用。相反,我的表单操作被执行。
HTML:
<form id = "Documents" action="Uploaded.php">
<input type="submit" id="Remove1" name="Remove[1]" value="Remove first" onclick="return Remove('Remove1');">
<input type="submit" id="Remove2" name="Remove[2]" value="Remove second" onclick=" return Remove('Remove2');">
</form>
更新的 JavaScript:
function Remove(currentDoc)
{
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("Removemsg").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","functions/remove.php?Doc="+currentDoc,true);
xmlhttp.send();
return false;
}
它调用uploaded.php
而不是我的remove.php
. 但我已经定义了我的onclick
函数来调用remove.php
. 好心提醒。