<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>toggleClass()方法</title> <style type="text/css"> <!-- p{ color:blue; cursor:help; font-size:13px; margin:0px; padding:5px; } .highlight{ background-color:#FFFF00; } --> </style> <script language="javascript" src="jquery.min.js"></script> <script language="javascript"> $(function () { $("p").click(function () { $(this).toggleClass("highlight"); }); }); </script> </head> <body> <p>高亮?</p> </body> </html> |
|