运行以下脚本时出现错误“请使用POST请求”。我只是html和javascript的初学者。任何人都可以帮助解决这里的问题。
javascript
function submitform(){
if (!document.getElementById('reschedule').onclick) {
alert("reschedule")
}
if (!document.getElementById('home').onclick) {
alert("home")
}
if (!document.getElementById('cancel').onclick) {
alert("cancel")
}
}
和html是
<html>
<form name="myform" method="post,get" onsubmit="return submitform();">
<input type="submit" id="reschedule" value="reschedule" />
<input type="submit" id="home" value="home" />
<input type="submit" id="cancel" value="cancel" />
</form>
答案 0 :(得分:6)
<form name="myform" method="post" onsubmit="return submitform();">
答案 1 :(得分:2)
改变这个:
method="post,get"
到此:
method="post"
在<form>
代码属性