2014-04-30 61 views
0

嘿傢伙我收到一個奇怪的XML錯誤我似乎無法找到解決方案,你們中的任何人都可以看到錯誤嗎?XML解析錯誤:沒有形成良好

編輯:我已經添加了相對碼,該項目是使用HTML5的基本屬性模式驗證輸入的形式等

XML Parsing Error: not well-formed 
Location: file:///C:/Users/Michael/Desktop/assignment/customer.xml 
Line Number 47, Column 81:  <input type="text" id="firstname" maxlength="20" pattern="[A-Za-z]+" required /> 
       ----------------------------------------------------------------------------------------------^ 

    <!DOCTYPE HTML> 
    <html lang="en"> 
    <head> 
    <meta charset="utf-8" /> 
    <meta name="description" 
    content="This document is about a Pizza meal being offered at a restaurant " /> 
    <meta name="keywords" content=" 
    Assignment1 5570891 Restaurant Meal" /> 
    <meta name="author" content="[Michael Freeman]" /> 
    <link href= "styles/Styles.css" rel="stylesheet" type="text/css" /> 
    <!--<script src="jquery.js"></script> 
    <script type="text/javascript" src="alternative.js"></script>--> 

    <script type="text/javascript" src="product.js"></script> 
    <title> Michael's Pizza Assignment </title> 
    </head> 
    <body> 
    <!-- Contains the header information that sits on top of the page--> 
     <header> 
     <h1> 
     Order Online 
     </h1> 
     </header> 
    <!-- The navigation bar and "current" class which is used in the CSS-->  
      <nav><a href="index.html" >Title</a>|<a href="product1.html">Pizza</a>|<a href="about.html " >About Me</a>|<a href="Enhancements.html">Extras</a> 
      </nav>  
    <!-- Contains the information in the top bar of the page, this bar maintains its appearance throughout all pages and informs the user of the purpose of the page-->  
     <nav class="orderbar"><p> 
      <a href="customer.html" class="current">Register</a>|<a href="select.html" >Make your order</a>|<a href="purchase.html">Complete payment</a> 
      </p> 
      </nav> 

    <!-- Contains the information in the second bar of the page, this bar maintains its appearance throughout all pages-->   
      <article class="secondbar"> 
      <h3>Please fill out the following form to register 
      </h3> 

      </article> 


      <section> 

      <form id="registerform" method="post" action="http://mercury.ict.swin.edu.au/it000000/formtest.php"> 
      <fieldset id="person"> 
      <legend>Customer registration</legend> 
      <p><label for="firstname">First Name:</label> 
      <input type="text" name="name" id="firstname" maxlength="20" pattern="[A-Za-z]+" required /> 
      </p> 
      <p><label for="surname">Surname:</label> 
      <input type="text" name="surname" id="surname" maxlength="20" pattern="[A-Za-z]+" required /> 
      </p> 
      <p><label for="age">Date of birth:</label> 
      <input type="text" name="age" id="age" required pattern="(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d" placeholder="DD/MM/YYYY" /> 
      </p> 
      <p><label for="email">Email:</label> 
      <input type="email" name="email" id="email" placeholder="[email protected]" required/> 
      </p> 
      <p><label for="phonenumber">Phone number:</label> 
      <input type="tel" name="phonenumber" id="phonenumber" maxlength="10" placeholder="Mobile number:04xxxxxxxx"   required/> 
      </p> 
      </fieldset> 
      <fieldset> 
      <legend>Address details</legend> 
      <p><label for="address">Residential address</label> 
      <input type="text" name="raddress" id="raddress" maxlength="40" requried/> 
      </p> 
      <p><label for="suburb">Suburb/Town</label> 
      <input type="text" name="suburb" id="suburb" maxlength="20" required/> 
      </p> 
      <p><label for="state">State</label> 
      <select name="state" id="state" required> 
      <option value="Vic" selected="selected">Vic</option> 
      <option value="NSW">Nsw</option> 
      <option value="QLD">Qld</option> 
      <option value="SA">SA</option> 
      <option value="WA">WA</option> 
      <option value="NT">NT</option> 
      <option value="ACT">ACT</option> 
      </select></p> 
      <p><label for="postcode">Postcode</label> 
      <input type="text" name="postcode" id="postcode" pattern="[0-9]{4}" maxlength="4" required/> 
      </p> 




      <p><label>Delivery Address</label> 
      <input type="text" name="daddress" id="daddress" maxlength="40"/></p> 
      <p><label>The same as residential address:</label> 
      <input type="checkbox" name="checkaddress" id="checkaddress" /> 
      </p> 

      </fieldset> 
      <p><input type="submit" value="Register" id="submit" /> 
      <input type="reset" value="Reset" /> 


      </form> 
      </section> 

    <!-- The footer which contains a link that allows users to email the author of the page-->   
    <footer><p>Email</p> <a href="mailto:[email protected]" >Michael Freeman</a> 
    </footer> 
    </body> 
    </html> 
+1

XML中沒有「空」屬性 - 「required」無效,它的格式必須是「attributename =」value「'。將空白HTML屬性轉換爲XHTML的慣例是將屬性名稱重複爲值「required =」required「'。 – CBroe

+0

謝謝你解決了我的問題!出於某種原因,我無法選擇您的評論作爲答案。 – Kaleon

+0

這是因爲它只是一個評論:-)現在添加它作爲答案。 – CBroe

回答

3

有沒有在XML中「空」屬性 - required無效,必須是attributename="value"的形式。

將空白HTML屬性轉換爲XHTML的慣例是將屬性名稱重複爲值required="required"

相關問題