多亏了你,我最近修复了滑动场的问题,所以我也想问这个问题。
在网站上:http ://www.trulyscience.com/test/index.html我有一个小盒子,里面有问题。当你按下它时它会滑动打开,当你再次按下它时它会滑动关闭。现在我的问题是这在 IE 中不起作用。
这是代码:
function loadQuestion(){
var lol;
lol = 1;
jQuery('#question').click(function(){
if (lol==0){
jQuery('#question').animate({height:'300'});
lol = 1;
}else{
jQuery('#question').animate({height:'30'});
lol = 0;
}
});
jQuery('#question').trigger('click'); // Simulating click
}
jQuery(document).ready(function(){
loadQuestion();
});