如何在 jQuery 选项卡中放置右对齐链接?
我的左侧有三个 jQuery 选项卡。 我希望在选项卡标题的右侧放置一个“退出”链接。 我怎样才能做到这一点?
I have three jQuery tabs on the left.
I wish to put a "Sign Out" link on the right within the tabs header.
How I can achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道这已经很旧了,并且已经有一个公认的答案,但它在涉及类似内容的谷歌搜索中排名靠前,现在我有一个更简单的解决方案,我想我会与其他找到这个问题的人分享。
在您的 .cshtml 或 .aspx 文件中,像这样定义选项卡:
如果您尝试验证原始 html,您将收到错误,因为将 a 标记包含为 ul 的直接子级,但是,一旦您调用 jQueryUi 选项卡函数在父 div 上,它将按照您想要的方式和外观进行排序
I know that this is old and there is already an accepted answer but it came up near the top on a Google search that involves something similar and I have a much easier solution now that I figured I would share for others that find this question.
In your .cshtml or .aspx file, define the tabs like so:
If you try to validate the raw html, you will get an error for including the a tag as a direct child of the ul but, once you call the jQueryUi tabs function on the parent div, it will all get sorted the way you want and look
抱歉耽误您了,
您要找的是:
Sorry for the delay,
What you are looking for is this :
我不使用 jQuery 选项卡,但是你能在标头中执行类似的操作吗?
我的链接
I don't use jQuery tabs, but could you do something like this within the header?
<a href="" style="position:absolute; right:0">My link</a>