按钮和文本 HTML
尝试创建一个用于电子邮件输入的按钮。我已经做过几次了,但无法以正确的方式做到这一点,这就是我正在尝试做的。
我尝试了几种方法来获取按钮和输入字段,但如何获取按钮注册文本“注册”
<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.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看文档! 您需要将“注册”文本包裹在
Check out the documentation! You need to wrap the "Sign Up"-text around a <button>-Tag like so:
您可以添加这一行。
如果您愿意设置注册按钮的样式。你可以使用下面的代码
You can add this line.
And if you are willing to style the Sign up Button. you can use the following code