【问题标题】:Fieldset adjustment字段集调整
【发布时间】:2014-05-22 20:10:36
【问题描述】:

我想在我的网站上创建 2 个字段(并列),但出了点问题...它本身显示了两个字段,而遗言没有显示给我。请帮忙

[对不起我的英语]

我的 HTML:

<table rows="1" cols="2">
  <tr>
      <td valign="top">
          <fieldset>
              <legend><font size="+1">Tovar</font></legend>
               <br>
               <input type="checkbox" name="bateria"> Použitá jednorazová baterka
               <br>
               <input type="checkbox" name="rozok"> Celozrnný rožok
               <br>
               <input type="checkbox" name="auto> Neviditeľné auto
        </fieldset>
    <td valign="top" width="50%">
      <fieldset>
        <legend><font size="+1"> Spôsob platby </font></legend>
        <br>
        <input type="radio" name="platba"> Master Card
        ...

【问题讨论】:

    标签: html checkbox radio-button fieldset


    【解决方案1】:

    第三个复选框的名称属性中缺少双引号

    <input type="checkbox" name="auto>
    

    应该是

    <input type="checkbox" name="auto">
    

    完整代码:

    <table rows="1" cols="2">
      <tr>
          <td valign="top">
              <fieldset>
                  <legend><font size="+1">Tovar</font></legend>
                   <br>
                   <input type="checkbox" name="bateria"> Použitá jednorazová baterka
                   <br>
                   <input type="checkbox" name="rozok"> Celozrnný rožok
                   <br>
                   <input type="checkbox" name="auto"> Neviditeľné auto
            </fieldset>
         </td> <!-- <== Missing </td> here and you are missing a double quote in the name attribute in the third checkbox  -->
         <td valign="top" width="50%">
          <fieldset>
            <legend><font size="+1"> Spôsob platby </font></legend>
            <br>
            <input type="radio" name="platba"> Master Card
            ...
    

    【讨论】:

    • td 元素的结束标签是可选的。 (而且您的更改非常不明显,因为您将其隐藏在一大段代码中间的注释中)。
    • @Quentin 你是怎么找出这个大块中间的评论的?
    • 我盯着它看了足够长的时间,并在输入“为什么缩进最后几行有帮助?”的评论中纠正了自己。
    • 嗯,它是给出并显示错误的上下文是的&lt;/td&gt; 是可选的,但有助于整体调试(在某种意义上)。
    猜你喜欢
    • 2012-10-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-01-12
    相关资源
    最近更新 更多