$(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) });});
num:$("#txtNumber").val()是取得输入框数据,按num:的格式发送数据到服务器端
2016-05-19
$("#tip").html("选中内容为:" + $txtOpt);
// $("#frmTest :selected").html("选中内容为:" + $txtOpt); 为什么都是可以的呢
// $("#frmTest :selected").html("选中内容为:" + $txtOpt); 为什么都是可以的呢
2016-05-18