$('button').click(function(){
$('#a1').slideToggle(3000,function(){
$('#jiejie').toggle(3000).html('我就静静的看大家的评论');
})
})
$('#a1').slideToggle(3000,function(){
$('#jiejie').toggle(3000).html('我就静静的看大家的评论');
})
})
2016-10-19
$.inArray(item,array,index); 查询指定元素在数组,或者json对象中的下标;
$(selector).index(item); 查询jquery对象或者DOM对象在选择器$(selector)集合中的下标;
$(selector).index(item); 查询jquery对象或者DOM对象在选择器$(selector)集合中的下标;
2016-10-14
$.inArray(item,array,index);
function isArray(item,array,index){
for(var i=index;i<array.length;i++){
if(item===array[i]){
return i;
}
}
return -1;
}
function isArray(item,array,index){
for(var i=index;i<array.length;i++){
if(item===array[i]){
return i;
}
}
return -1;
}
2016-10-14
$(selector).each(obj,function(arguments[0],arguments[1]){});
如果被遍历对象是数组,那么function第一个参数是index,即当前遍历成员的下标。第二个参数是item,即当前遍历成员本身,与this同意;
如果被遍历对象是json对象,那么function第一个参数是property,即当前遍历成员的键。第二个参数是value,即当前遍历成员的值。
如果被遍历对象是数组,那么function第一个参数是index,即当前遍历成员的下标。第二个参数是item,即当前遍历成员本身,与this同意;
如果被遍历对象是json对象,那么function第一个参数是property,即当前遍历成员的键。第二个参数是value,即当前遍历成员的值。
2016-10-14
var index = $.inArray('a',['a','b','c','d','a','c'],0);
执行后显示:a的索引值为0 后面的数字代表a的位置(从0开始)
执行后显示:a的索引值为0 后面的数字代表a的位置(从0开始)
2016-10-14