编辑超链接验证
Edit hyperlink validation
是否有可能向共享点中的超链接类型添加其他协议?
我想在顶级导航栏中添加注释 (notes://***)。
是否有我可以扩展的东西或我可以在何处编辑验证
可能无法在不进行任何自定义的情况下轻松关闭 OOB link 验证。取决于输出你可能需要你可以使用注释列并在编辑 HTML 文件的内容中手动放置 link 标签,如:
</p>
<pre><code><a href="note://someLink">someLink</a>
。保存后 SharePoint 将在列表 Web 部件上将其呈现为 link。
默认情况下,SharePoint 导航 Hyperlinks 必须以 http://,https://,mailto:,ftp://,file://,/,# 或 \.
开头
如果您想使用 "notes://***",作为解决方法,您可以使用 jQuery 代码添加 link。
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$(".ms-core-listMenu-horizontalBox>ul>li>ul").append("<li class='static'><a href='notes://xxx'>MyNote</a></li>");
});
</script>
是否有可能向共享点中的超链接类型添加其他协议?
我想在顶级导航栏中添加注释 (notes://***)。
是否有我可以扩展的东西或我可以在何处编辑验证
可能无法在不进行任何自定义的情况下轻松关闭 OOB link 验证。取决于输出你可能需要你可以使用注释列并在编辑 HTML 文件的内容中手动放置 link 标签,如:
</p>
<pre><code><a href="note://someLink">someLink</a>
。保存后 SharePoint 将在列表 Web 部件上将其呈现为 link。
默认情况下,SharePoint 导航 Hyperlinks 必须以 http://,https://,mailto:,ftp://,file://,/,# 或 \.
开头如果您想使用 "notes://***",作为解决方法,您可以使用 jQuery 代码添加 link。
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$(".ms-core-listMenu-horizontalBox>ul>li>ul").append("<li class='static'><a href='notes://xxx'>MyNote</a></li>");
});
</script>