$("#content").css({"background-color":"red","color":"white"});
2015-06-17
$("#content").css({"background":"red","color":"white"});
2015-06-17
html()方法可以获取元素的HTML内容,因此,原文中的格式代码也被一起获取,
而text()方法只是获取元素中的文本内容,并不包含HTML格式代码
而text()方法只是获取元素中的文本内容,并不包含HTML格式代码
2015-06-17
$("#a1").attr("href" , "www.imooc.com");
var $url = $("#a1").attr("href");
$("#tip").html($url);
var $url = $("#a1").attr("href");
$("#tip").html($url);
2015-06-17
$("#frmTest input:submit").addClass("bg_red");
2015-06-17
$("#frmV").ajaxForm(options);
除了jqury.js,事实上还调用了http://www.imooc.com/data/jquery.form.js这个插件,看源码有关option的部分如下:
options = $.extend({
url: this.attr('action') || window.location.toString(),
type: this.attr('method') || 'GET'
}, options || {});
除了jqury.js,事实上还调用了http://www.imooc.com/data/jquery.form.js这个插件,看源码有关option的部分如下:
options = $.extend({
url: this.attr('action') || window.location.toString(),
type: this.attr('method') || 'GET'
}, options || {});
2015-06-17
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
$(function(){
var st=[{"name":"f","fuck":"d"},
{"name":"q","fuck":"q"}];
$.each(st,function(index){
$("ul").append("<li>name:"+st[index].name +"<br>"+"fuck:"+st[index].fuck+"</li>")
});
})
$(function(){
var st=[{"name":"f","fuck":"d"},
{"name":"q","fuck":"q"}];
$.each(st,function(index){
$("ul").append("<li>name:"+st[index].name +"<br>"+"fuck:"+st[index].fuck+"</li>")
});
})
$("input")
.bind("focus", function () {
$("div").html("请输入您的姓名!");
})
.bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
.bind("focus", function () {
$("div").html("请输入您的姓名!");
})
.bind("blur", function () {
if ($(this).val().length == 0)
$("div").html("你的名称不能为空!");
})
2015-06-17
不给参数的时候,check.php返回 "偶数",直接打开 http://www.imooc.com/data/check.php 返回>>偶数
所以当数据不是post而是get方式传递的数据,无论任何数返回的都是"偶数".
所以当数据不是post而是get方式传递的数据,无论任何数返回的都是"偶数".
2015-06-17
<script type="text/javascript">
$("li:gt(3)").hide();
$("li:last").show();
$("a").bind('click',function(){
if($("a").html() == "更多"){
$("a").html("简化");
$("li").show();
}else{
$("a").html("更多");
$("li:gt(3)").hide();
$("li:last").show();
}
});
</script>
$("li:gt(3)").hide();
$("li:last").show();
$("a").bind('click',function(){
if($("a").html() == "更多"){
$("a").html("简化");
$("li").show();
}else{
$("a").html("更多");
$("li:gt(3)").hide();
$("li:last").show();
}
});
</script>
$.getJSON("../../data/sport.json",function(data)
2015-06-17