SharePoint母版页使用网站的标题和地址
Posted 雨轩哥哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharePoint母版页使用网站的标题和地址相关的知识,希望对你有一定的参考价值。
获取网站标题
<SharePoint:ProjectProperty Property="Title" runat="server"/>
获取网站Url
<SharePoint:ProjectProperty Property="url" runat="server"/>
这些都可以放在JS中,示范在母版页做一个点击标题挑战到首页的效果。
<div style="cursor:pointer;" onclick="window.location.href=‘<SharePoint:ProjectProperty Property="Url" runat="server"/>
‘"> <SharePoint:ProjectProperty Property="Title" runat="server"/> </div>
以上是关于SharePoint母版页使用网站的标题和地址的主要内容,如果未能解决你的问题,请参考以下文章