$.getScript("url", function(){});用于异步加载js文件并执行
2016-02-21
通过$.getJSON("url", "参数", "回掉函数")可以异步请求数据
参数可有可无
参数可有可无
2016-02-21
已采纳回答 / 好学的程序猿
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>加上这个jQuery文件引用
2016-02-21
$("span").each(function (index) {
if (index == 1) {
$(this).attr("class", "red");
}
});
if (index == 1) {
$(this).attr("class", "red");
}
});
2016-02-21
本案例的重点是聊天室的前端实现,通过案例加深学生对jQ基础知识的印象;而php是后端开发语言,已经超出基础课程的教学范围,相关知识点属于后续课程的内容,别一个两个伸手要php了。。
2016-02-20
$("span").each(function(index){
if(index==1){
$(this).attr("class","red");
}
});
if(index==1){
$(this).attr("class","red");
}
});
2016-02-20