0

我以前做过 textareas ,但这个简直要了我的命。文本区域显示的是 html 代码,并且没有正确地 css'ed。所以在实际的窗口中,我得到了 textarea 元素的代码,它也显示了我的其余代码,而不是渲染它。没有 textarea 标签,一切都很好。

<article>
<form method="POST" name="form9" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    <label for="firstName">First Name <sup>*</sup></label>
    <input type="text" id="firstName" name="firstName" required />

    <label for="lastName">Last Name <sup>*</sup></label>
    <input type="text" id="lastName" name="lastName"/>

    <label for="wrstyle">Writing Style <sup>*</sup></label>
    <textarea placeholder="Please, briefly describe your writing style." type="text" id="wrstyle" name="wrstyle"</textarea>

    <label for="submit" class="centerit" title="Click here to register your account">
    <input type="submit" name="submit" value="Sign Up" />
                </label>
                <p class="notice"><sup>*</sup> denotes a required field.</p>

</form>
</article>
4

2 回答 2

2

您没有关闭 textarea 的开始标签(您丢失了>):

http://jsfiddle.net/Bvk92/

还值得注意的是<textarea>没有type属性。

于 2013-04-18T05:19:09.810 回答
0

您忘记关闭文本区域的标签.......

 <article>
    <form method="POST" name="form9" action="<?php echo $_SERVER['PHP_SELF']; ?>">
        <label for="firstName">First Name <sup>*</sup></label>
        <input type="text" id="firstName" name="firstName" required />

        <label for="lastName">Last Name <sup>*</sup></label>
        <input type="text" id="lastName" name="lastName"/>

        <label for="wrstyle">Writing Style <sup>*</sup></label>
        <textarea placeholder="Please, briefly describe your writing style." type="text" id="wrstyle" name="wrstyle"></textarea>

        <label for="submit" class="centerit" title="Click here to register your account">
        <input type="submit" name="submit" value="Sign Up" />
                    </label>
                    <p class="notice"><sup>*</sup> denotes a required field.</p>

    </form>
    </article>
于 2013-04-18T05:21:35.120 回答