-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 に答える