显示我的SharePoint主页面中的当前年份
我正在使用SharePoint 2013团队网站。而在我的seatle.master页我已经定义如下: -显示我的SharePoint主页面中的当前年份
<div id="customFooter" class="noindex">© .. Group 2013</div>
,但我不知道是否有从我的母版页访问Date对象的方式,然后显示当前的年,而不是手写打字的一年。这将需要稍后更新一年。 感谢
回答:
试试这个
<div id="customFooter" class="noindex"> © .. Group <%=DateTime.Now.Year.ToString() %>
</div>
回答:
试试这个:
<div id="customFooter" class="noindex"> © .. Group <script type="text/javascript">document.write(new Date().getFullYear());</script> </div>
以上是 显示我的SharePoint主页面中的当前年份 的全部内容, 来源链接: utcz.com/qa/263656.html