我正在尝试点击切换功能。 我不明白为什么我的功能不起作用,这很简单......
$("#hello").toggle(function(){
$('#content').css({marginLeft:'20px'});
},function(){
$('#content').css({marginLeft:'0px'});
});
答案 0 :(得分:0)
$("#hello").on('click', function(){
var toggle = $(this).data('toggle'); // get current state
$('#content').css('margin-left', toggle ? 0 : 20);
$(this).data('toggle', !toggle); // set state to opposite of current
}); // state, i.e. a toggle switch
答案 1 :(得分:0)
它确实有用......当你包含jQuery时。 请参阅fiddle。
included jQuery in framework selector.