SharePoint 2010自定义列表表单工具提示

时间:2018-05-14 11:38:49

标签: sharepoint sharepoint-2010

SharePoint 2010自定义列表表单工具提示字段帮助

我在SharePoint中有一个自定义表单,我需要在mouseover上添加格式化字段帮助,有什么好办法可以实现这一点?

标准工具提示快速消失。

哦,顺便说一下,我们没有使用InfoPath,我们正在使用SharePoint设计器。我们使用Overlib但无法使用它来使用SharePoint代码。

感谢您的建议

1 个答案:

答案 0 :(得分:0)

我们可以使用jQuery UI中的jQuery Tooltip来实现它。以下代码供您参考:

<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function(){
    $("input[title='Title']").tooltip();
})
</script>

将代码添加到自定义表单页面中的内容编辑器Web部件。此代码适用于Title字段,您可以添加类似的代码以使其适用于其他字段。