按钮和文本 HTML

发布于 2025-01-11 12:08:04 字数 413 浏览 0 评论 0原文

尝试创建一个用于电子邮件输入的按钮。我已经做过几次了,但无法以正确的方式做到这一点,这就是我正在尝试做的。

在此处输入图像描述

我尝试了几种方法来获取按钮和输入字段,但如何获取按钮注册文本“注册”

<div class="email">
    <p> Join our mailing list!</p>
    <label for="email">Enter your email:</label>
    <input type="email" id="email" name="email"> Sign Up
</div>

      

Trying to create a button for an email input. I have made it a few times but cannot make it the correct way here is what i am trying to make.

enter image description here

I have tried a few ways I can get the button and input fields there but how can I get the button to register the text "Sign Up"

<div class="email">
    <p> Join our mailing list!</p>
    <label for="email">Enter your email:</label>
    <input type="email" id="email" name="email"> Sign Up
</div>

      

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈甜 2025-01-18 12:08:04

查看文档! 您需要将“注册”文本包裹在

<button>Sign Up</button>

Check out the documentation! You need to wrap the "Sign Up"-text around a <button>-Tag like so:

<button>Sign Up</button>
药祭#氼 2025-01-18 12:08:04

您可以添加这一行。

<button type="submit">Sign Up</button>

如果您愿意设置注册按钮的样式。你可以使用下面的代码

<button type="submit" class="signupbtn">Sign Up</button>

You can add this line.

<button type="submit">Sign Up</button>

And if you are willing to style the Sign up Button. you can use the following code

<button type="submit" class="signupbtn">Sign Up</button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文