$("#a1").hide(3000).show(3000) 找到类a1,进行(3000ms)隐藏,然后再显示(3000ms)
2016-12-19
jQuery.inArray( value, array ,[ fromIndex ] ),第一个数是要找的元素,第二个是数组,第三个是开始的位置(相当于索引)
2016-12-19
$.inArray('Aaro',['test','Araon','array','慕课网'])返回值为-1,即没找到,inArray要找的是一模一样的字符串
2016-12-18
$('#elem').animate({
width: 'toggle',
height: 'toggle'
}, {
duration: 5000,
specialEasing: {
width: 'linear',
height: 'easeOutBounce'
},
complete: function() {
$(this).after('<div>Animation complete.</div>');
}
});
animate一大难点,好多地方要用到
width: 'toggle',
height: 'toggle'
}, {
duration: 5000,
specialEasing: {
width: 'linear',
height: 'easeOutBounce'
},
complete: function() {
$(this).after('<div>Animation complete.</div>');
}
});
animate一大难点,好多地方要用到
2016-12-17
想问一下,把自定义的v和$aaron变量放到外面,结果执行的都是让第二个字变颜色,谁能来解释一下。。
2016-12-14