Loading an external .htm file to a div with javascript [duplicate]
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Loading an external .htm with javascript into a div Loading an external .htm file into a div with javascript This is my entire code: <html> <head> </head> <body> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(function(){ $('.ajax') .click(function(e){ e.preventDefault() $('#content').load( 'file.htm' ) }) }) </script> <div id="content"> <p>random text</p> </div>