2010-12-21 57 views
0

我有一個html表單發佈到php腳本中。它在Chrome和Firefox中運行正常,但不在IE中。我對W3C進行了測試,但找不到與表單有關的任何錯誤。我的代碼是:在IE瀏覽器中發佈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> 

在此先感謝

+0

您是否嘗試將../添加到腳本/ contact.php鏈接中,以便它讀取../script/contact.php? – mickburkejnr 2010-12-21 23:37:15

+5

它究竟以什麼方式不起作用? – Jon 2010-12-21 23:38:23

回答

0

形式是正確的。看起來像服務器端的錯誤處理形式。你如何捕捉結果?

相關問題