编辑下面的代码:【加编码】
<html> <head> <script src="https://libs.baidu.com/jquery/1.8/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").toggle( function(){$("p").css({"color":"red"});}, function(){$("p").css({"color":"blue"});}, function(){$("p").css({"color":"green"}); }); }); </script> </head> <body> <p style="font-size:40px">Click me.</p> <div><b>Note:</b> The toggle() method was deprecated in jQuery version 1.8, and removed in version 1.9. We have used an earlier version of jQuery (1.8 in the script tag), for this example to work.</div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂