我正在关注这个会议研讨会,他们在那里教如何做一个sharepoint应用程序
在某种程度上,我有这个脚本
$(document).ready(function () {
//get context and then username
context = new SP.ClientContext.get_Current();
web = context.get_web();
//get the tasks for the user
getTaskCountForUser();
});
它将简单地计算任务列表中剩余的任务数量。
我在应用程序部件asp
在下面利用jQuery和slickGrid编写的脚本中,我一直收到一个错误:Slick is not defined (5 out of range 4)或Slick is not defined (6 out of range 4) --无论是在FireBug中还是在Chrome中:
Uncaught ReferenceError: Slick is not defined
$.ready.$.css.opacity
f.Callbacks.o jquery-1.7.2.min.js.php:2
f.Callbacks.p.add jquery-1.7.2.min.js.php:2
e.fn
我想用java脚本获取href的值,然后把它传递给php的另一个文件,我做了JS的代码,返回值是正确的,但我不知道如何获得值并传递它,提前谢谢。我是JS的新手
<script>
$(function(){
$('div#tabs ul li a').click(function() {
var n = $(this).attr('href');
var p=n.slice(5,6);
alert(p);
});
});
</script>