0
$(document).ready(function() {
   $("div").css({
       "width":"80px",
       "height":"40px",
       "margin":"5px",
       "float":"left",
       "background-color":"blue",
       "border":"10px outset",
       "cursor":"pointer"
       });

       $("div").toggle(function(){
          $(this).css({
               "border":"5px inset",
               "background-color":"red"
               });

       },function(){
           $(this).css({
               "border":"10px outset",
               "background-color":"yellow"
               });     
       },function(){
           $(this).css({
               "background-color":"blue"
               });

        });

});
4

1 回答 1

2

.toggle()您使用的在 jQuery 1.8 中已弃用并在 1.9 中删除。

http://api.jquery.com/toggle-event/

您需要用.click()函数替换它,或者编写自己的函数来模拟旧功能

于 2013-02-27T16:10:23.183 回答