.toggle( handler, handler [, handler ] )Returns: jQueryversion deprecated: 1.8, removed: 1.9
2014-12-15
$.getScript("http://www.imooc.com/data/sport_f.js", function() {
2014-12-15
使用get()方法时,采用GET方式向服务器请求数据,不发送数据
与get()方法相比,post()方法多用于以POST方式向服务器发送数据,服务器接收到数据之后,进行处理,并将处理结果返回页面
与get()方法相比,post()方法多用于以POST方式向服务器发送数据,服务器接收到数据之后,进行处理,并将处理结果返回页面
2014-12-15
<style type="text/css">
.re0d{background:red;}
</style>
.re0d{background:red;}
</style>
2014-12-14
<script type="text/javascript">
$("span").each(function (index) {
if (index == 1) {
$(this).attr("class", "red");
}
});
</script>
$("span").each(function (index) {
if (index == 1) {
$(this).attr("class", "red");
}
});
</script>
2014-12-14