我是初学者并测试一些代码!我的根站点上有一些提升链接,这些链接指向文档库,我想我可以将鼠标悬停在磁贴上,并显示每个库的文档数量的警报。 我的代码看起来像这样,它不起作用。在此先感谢您的帮助。
$(document).ready(function () {
$("a[id^=Tile_WPQ2_1_4]").function () {
$(this).mouseenter(function () {
var currentcontext = null;
var currentweb = null;
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', sharePointReady);
function GetList()
{
currentcontext = new SP.ClientContext.get_current();
currentweb = currentcontext.get_web();
var myList = clientContext.get_site().get_rootWeb().get_lists().getByTitle('DocLibrary One');// get the list
currentcontext.load(myList);
currentcontext.executeQueryAsync(Function.createDelegate(this, this.ExecuteOnSuccess),
Function.createDelegate(this, this.ExecuteOnFailure));
}
function ExecuteOnSuccess(sender, args)
{
alert('Documents: ' + myList.get_itemCount());
}
function ExecuteOnFailure(sender, args)
{
alert("Error in Getting List ID");
}
)};
)};
});
);