私はPHPスクリプトに投稿するhtmlフォームを持っています。それはchromeとfirefoxではうまく動作しますが、IEではうまく動作しません。 W3Cでテストを実行しましたが、フォームに関連するエラーは見つかりませんでした。私のコードは次のとおりです。事前にInternet Explorerのhtml投稿フォームでエラーが発生しました
<form class="formular" id="formular" method="post" action="script/contact.php">
<fieldset>
<label>
<span>Name : </span>
<input type="text" class="validate['required','length[3,-1]','nodigit'] text-input" name="Name" />
</label>
<label>
<span>Email address : </span>
<input type="text" class="validate['required','email'] text-input" name="email" />
</label>
</fieldset>
<div class="button">
<input type="submit" value="Contact" class="submit" />
</div>
</form>
おかげ
あなたのscript/contact.phpリンクに../を追加しようとしましたか?それで../script/contact.php? – mickburkejnr
どのように正しく動作しませんか? – Jon
これらのすごいクラス名から、私はクライアント側のバリデーターが存在すると推測しています。 JavaScriptのエラーをチェックしましたか? – Phil