我正在尝试使用 jquery 制作动画面板,但我的代码无法正常工作,我需要您的帮助。这是我的代码:
jQuery('#style_selector .open').click(function() {
jQuery('#style_selector').stop(true).animate({"left":"200px"});
});
jQuery('#style_selector .open').click(function(){
jQuery('#style_selector').stop(true).animate({"left":"-200px"});
});