输入文本字段集中的换行符除外

时间:2017-07-26 09:44:41

标签: html forms

我有以下html来捕获一些数据。

<fieldset>
    <legend>Rezept hinzufügen</legend>

    <form action="php_act/create.php" method="post">
        <table cellspacing="0" cellpadding="0">
            <tr>
                <th>Rezept Name</th>
                <td><input type="text" name="name" placeholder="Rezept Name" /></td>
            </tr>     
            <tr>
                <th>Kurzbeschreibung</th>
                <td><input type="text" name="kurztext" placeholder="Kurzbeschreibung" class="kurztext" /></td>
            </tr>
            <tr>
                <th>Kategorie</th>
                <td><input type="text" name="Kategorie" placeholder="Kategorien - mit , trennen" /></td>
            </tr>

            <tr>
                <th>Anforderung</th>
                 <td><select name="Anforderung">
                    <option value="einfach">einfach</option>
                    <option value="mittel">mittel</option>
                    <option value="schwer">schwer</option>
                </select></td>               
            </tr>

            <tr>
                <th>Zeit / Nährwerte</th>
                <td><input type="text" name="zeit" placeholder="Zeit in minuten" /></td>
                <td><input type="text" name="KCAL" placeholder="KCAL" size="6"/></td>
                <td><input type="text" name="KH" placeholder="KH" size="6"/></td>
                <td><input type="text" name="Eiweiss" placeholder="Eiweiss" size="6"/></td>
                <td><input type="text" name="Fett" placeholder="Fett" size="6" /></td>

            </tr>

            <tr>
                <th>Portionen</th>
                <td><input type="text" name="Portionen" placeholder="Portionen" /></td>

            </tr>

            <tr>
                <th>Zutaten</th>
                <td><input type="text" name="zutaten" placeholder="Zutaten" /></td>

            </tr>

            <tr>
                <th>Zubereitung</th>
                <td><input type="text" name="zubereitung" placeholder="Zubereitung" /></td>

            </tr>

            <tr>
                <th>FotoliaID</th>
                <td><input type="text" name="FotoliaID" placeholder="FotoliaID" /></td>

            </tr>


            <tr>
                <td><button type="submit">Speichern</button></td>
                <td><a href="index.php"><button type="button">zurück</button></a></td>
            </tr>
        </table>
    </form>

</fieldset>

有一些输入类型文字。我需要捕获文本字段中的换行符。问题是“输入”默认提交。是否有可能改变这种状况。 Enter应在文本字段中添加换行符,而不是提交表单。

1 个答案:

答案 0 :(得分:2)

你不能使用textarea而不是textbox吗? 在textarea中,您可以插入enter。

https://www.w3schools.com/tags/tag_textarea.asp