<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <title>a</title> <script type="text/javascript" src="jquery.min.js"></script> </head> <body> <iframe id="framex" src="http://www.baidu.com"></iframe> <p>pppppppp</p> <script type="text/javascript"> $(function(){ $("#framex").contents().click(function(){ alert(123); }) $("p").click(function(){ alert(234) }) }) </script> </body> </html>
田心枫