创建切换功能onclick

时间:2013-11-14 17:54:05

标签: javascript jquery function toggle

我正在尝试点击切换功能。 我不明白为什么我的功能不起作用,这很简单......

http://jsfiddle.net/7y46W/1/

 $("#hello").toggle(function(){
 $('#content').css({marginLeft:'20px'});
     },function(){
 $('#content').css({marginLeft:'0px'});
 });

2 个答案:

答案 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

FIDDLE

答案 1 :(得分:0)

它确实有用......当你包含jQuery时。 请参阅fiddle

included jQuery in framework selector.