当我制作原型时,我应该在 href 中添加什么?
在原型设计时,我们经常做空锚点。一种非常常见的方法是执行以下操作:
<a href="#">Go here</a>
但是如果客户端单击此链接,页面将滚动到顶部。但如果我们省略 href 属性,链接的行为就不会像链接一样。
我见过这样的东西:
<a href="javascript;">Go here</a>
但它看起来不对。
还有其他想法吗?
When protyping we often do empty anchors. A very common way to do this is to do something like:
<a href="#">Go here</a>
But if the client clicks this link, the page will scroll to the top. But if we leave out the href attribute, the link won't behave like a link.
I've see stuff like:
<a href="javascript;">Go here</a>
But it doesn't look right.
Any other ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您点击它时不会执行任何操作。我认为“标准”是只使用 # 并告诉客户它是原型,因此链接将无法正常运行:)
will do nothing when you click on it. i think the 'standard' is to just use a # though and tell the client that it's a prototype and so links will not function properly :)