-1

运行以下脚本时出现错误“请使用 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>

4

2 回答 2

6
<form name="myform" method="post" onsubmit="return submitform();">
于 2013-02-11T15:14:09.887 回答
2

改变这个:

method="post,get"

对此:

method="post"

<form>标签属性中

于 2013-02-11T15:14:22.043 回答