我将 var x 的值设置为单击按钮的值。然后我想使用 var x 作为我的 jquery 动画代码中的值。
var x = $('input').click(function() {
$(this).val();
});
$("li").click(function() {
$(this)
.stop()
.animate(
{height:'150px'},
{queue:false, duration:600, easing: x }
);
});
$("li").mouseout(function() {
$(this)
.stop()
.animate(
{height:'50px'},
{queue:false, duration:600, easing: x });
});
我究竟做错了什么 ?演示:http: //jsfiddle.net/EnigmaMaster/z9dXA/7/