首页 > 代码库 > SharePoint母版页使用网站的标题和地址

SharePoint母版页使用网站的标题和地址

获取网站标题
<SharePoint:ProjectProperty Property="Title" runat="server"/>

获取网站Url

<SharePoint:ProjectProperty Property="url" runat="server"/>

 

这些都可以放在JS中,示范在母版页做一个点击标题挑战到首页的效果。

<div style="cursor:pointer;" onclick="window.location.href=http://www.mamicode.com/‘<SharePoint:ProjectProperty Property="Url" runat="server"/>
‘"> <SharePoint:ProjectProperty Property="Title" runat="server"/> </div>

 

SharePoint母版页使用网站的标题和地址