次のスクリプトの実行中に、「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>