最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Toggle onClick jquery - Stack Overflow

programmeradmin2浏览0评论

I am new to web-designing. I have this sample code which toggles a div when we click anywhere on the window.

<!doctype html>
   <html lang="en">
     <head>
       <meta charset="utf-8">
            <title>slide demo</title>
               <link rel="stylesheet" href=".10.3/themes/smoothness/jquery-ui.css">
                   <style>
                     #toggle {
                     width: 100px;
                     height: 100px;
                     background: #ccc;
                     }
                   </style>
                   <script src=".9.1.js"></script>
                   <script src=".10.3/jquery-ui.js">                       </script>
       </head>
       <body>

       <p>Click anywhere to toggle the box.</p>
       <div id="toggle"></div>

       <script>
          $( document ).click(function() {
          $( "#toggle" ).toggle( "slide" );
          });
       </script>

    </body>
</html>

How can I add an image and change the image for show and hide? I have an '>' icon. When I click on it, div should appear and '>' should change to '<'

I am new to web-designing. I have this sample code which toggles a div when we click anywhere on the window.

<!doctype html>
   <html lang="en">
     <head>
       <meta charset="utf-8">
            <title>slide demo</title>
               <link rel="stylesheet" href="http://code.jquery./ui/1.10.3/themes/smoothness/jquery-ui.css">
                   <style>
                     #toggle {
                     width: 100px;
                     height: 100px;
                     background: #ccc;
                     }
                   </style>
                   <script src="http://code.jquery./jquery-1.9.1.js"></script>
                   <script src="http://code.jquery./ui/1.10.3/jquery-ui.js">                       </script>
       </head>
       <body>

       <p>Click anywhere to toggle the box.</p>
       <div id="toggle"></div>

       <script>
          $( document ).click(function() {
          $( "#toggle" ).toggle( "slide" );
          });
       </script>

    </body>
</html>

How can I add an image and change the image for show and hide? I have an '>' icon. When I click on it, div should appear and '>' should change to '<'

Share Improve this question edited Aug 30, 2013 at 12:50 Anusha Honey asked Aug 30, 2013 at 12:38 Anusha HoneyAnusha Honey 9374 gold badges12 silver badges27 bronze badges 2
  • instead of registering the click handler to document, register it to a button – Arun P Johny Commented Aug 30, 2013 at 12:39
  • add a button with say id="btn1", then you can set click event like this: $( '#btn1').click(function() { $( "#toggle" ).toggle( "slide" ); }); – Yeronimo Commented Aug 30, 2013 at 12:40
Add a ment  | 

6 Answers 6

Reset to default 2
$('#buttonid').on('click', function () {
    $('#toggle').toggle('slide');
});

add a button with an unique id like this

<button id="buttonid">click to toggle </button>

I think you can do as follow

<img src='source:<'  id='imageid' data-othersource='source:>' />

You can declare an image like that with the two sources and then switch the src in jQuery.

//wait for the document to be fully loaded to execute
$(document).ready(function(){
  //use event delegation
  $(document).on('click','#imageid',function(){

    var $this= $(this);
    $('#toggle').toggle('slide',function(){
      //swap src of the image on toggle is pleted
      var imgsrc = $this.attr('src');
      $this.attr('src',$this.data('othersource'));
      $this.data('othersource',imgsrc)

   });
  });
});

This way if for some reasons, you have to change the images, you don't need to get back to script, you just need to change the html.

http://jsfiddle/AmqcY/

Note: event delegation is not necessary in this case, but still i think it's important you read about that part for furthur use.

instead of registering the click handler to document, register it to a button

if you have a button with id mybutton then

//dom ready handler so that the script is executed after the dom is loaded
jQuery(function(){
    //register the click handler to an element with id mybutton
    $('#mybutton').click(function () {
        $("#toggle").toggle("slide");
    });
})

Demo: Fiddle

By id:-

  <button id="button_id">click to toggle </button>

   $('#button_id').click(function() {
        $( "#toggle" ).toggle( "slide" );
     });

By class:-

  <button class="button_class">click to toggle </button>

     $('.button_class').click(function() {
            $( "#toggle" ).toggle( "slide" );
         });

Try like this

$('#yourbuttonId').click(function () {
    $("#toggle").toggle("slide");
});

Demo

Try this Code

$('body').on('click',function(){
        $('#toggle').toggle('slide');        
    });
发布评论

评论列表(0)

  1. 暂无评论