html 这个代码不工作,我的意思是当我按下“提交”或“重置”按钮,什么都没有改变

z8dt9xmd  于 2022-12-16  发布在  其他
关注(0)|答案(3)|浏览(111)
<fieldset style="padding: 20px;">
        <legend>Send Us A Message</legend>

        <label for="name">Name</label>
        <input type="text" name="name" id="name" placeholder="David" required autofocus><br><br>
    </fieldset>
         <button type="submit">Send</button>
         <button type="reset">reset</button>

换了还是不行

ryoqjall

ryoqjall1#

请使用<form>或添加js代码

<form>
<fieldset style="padding: 20px;">
        <legend>Send Us A Message</legend>

        <label for="name">Name</label>
        <input type="text" name="name" id="name" placeholder="David" required autofocus><br><br>
    </fieldset>
         <button type="submit">Send</button>
         <button type="reset">reset</button>
</form>

或添加js代码
请让我知道这是否有帮助。

ljsrvy3e

ljsrvy3e2#

use form tag  <form> </form> 

<form> 
    <fieldset style="padding: 20px;">
        <legend>Send Us A Message</legend>

        <label for="name">Name</label>
        <input type="text" name="name" id="name" placeholder="David" required autofocus><br><br>
    </fieldset>
         <button type="submit">Send</button>
         <button type="reset">reset</button>
        </form>

字符串

brjng4g3

brjng4g33#

与上面的答案一样,您需要使用,但还需要指定操作和方法

<form method="POST" action="registration.php">

相关问题