$(function(){
var i=0,
s=200;
$("h4").bind("click",function(){
if(i==0){
$("ul").show( s,function(){i=1});
}else if(i==1){
$("ul").hide( s,function(){i=0});
}
})
});
var i=0,
s=200;
$("h4").bind("click",function(){
if(i==0){
$("ul").show( s,function(){i=1});
}else if(i==1){
$("ul").hide( s,function(){i=0});
}
})
});
2016-05-19
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
$(function(){
var jsonData=[{"name": "June","age": 23}, {"name":"Jay","age": 36}, {"name": "Jack","age": 62}];
$.each(jsonData,function(index,data){
$("ul").append("姓名:"+data.name+",年龄:"+data.age) });});
$(function(){
var jsonData=[{"name": "June","age": 23}, {"name":"Jay","age": 36}, {"name": "Jack","age": 62}];
$.each(jsonData,function(index,data){
$("ul").append("姓名:"+data.name+",年龄:"+data.age) });});
已采纳回答 / 藤媛拓海
<!doctype html><html><head><meta charset="utf-8"><title>jQuery animate实现圆角动画</title><style type="text/css"> div{width:200px; height:200px; margin:100px; background:pink; border-radius:10px; }</style></hea...
2016-05-19
最赞回答 / 终结者2号
show()方法只是显示出隐藏的元素;hide() 方法只是隐藏可见的元素;toggle() 方法切换元素的可见状态,如果被选元素可见,则隐藏这些元素,如果被选元素隐藏,则显示这些元素;slideDown()方法以滑动方式显示隐藏的元素;slideUp()方法以滑动方式隐藏的元素;slideToggle()方法通过使用滑动效果,在显示和隐藏状态之间切换 元素。
2016-05-19
num:$("#txtNumber").val()是取得输入框数据,按num:的格式发送数据到服务器端
2016-05-19
$("#tip").html("选中内容为:" + $txtOpt);
// $("#frmTest :selected").html("选中内容为:" + $txtOpt); 为什么都是可以的呢
// $("#frmTest :selected").html("选中内容为:" + $txtOpt); 为什么都是可以的呢
2016-05-18