使用 CSS 和 CoffeeScript 添加按钮
我想将“添加您的”更改为按钮。
文本的代码在这里,
addMorePhotosButton = $ """
<div style="float:left;font-size:32px">
<br>
Everyone's photos from
"<span class="jvreplacewitheventname">this event</span>"
<a class="jvaddmorephotosbutton" href="#">+Add yours!</a>
<br/>
</div>
"""
addMorePhotosInfoDiv.append addMorePhotosButton
我将按钮本身的 CSS 添加到正确的 CSS 文件中,我只需要知道在上面放置什么代码即可使其正确呈现。
您可以在此处查看我希望显示按钮的链接:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有两个选择:
/
标签的样式,使其具有类似按钮的外观。在 Google 上搜索“css 按钮" 查看一些常见的方法。
You have two options:
<button>
tag instead of<a>
. I don't recommend this, as there are some annoying cross-browser inconsistencies with the visual look of<button>
s.<span
/<a>
tags with your CSS to give them a button-like appearance. Do a Google search for "css button" to see some common approaches.