fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").on("click",function(){ alert("The paragraph was clicked."); }); }); </script> </head> <body> <p>Click this paragraph.</p> </body> </html>
运行结果