如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
load
$(".box").load("./1.php");//自动导入1.PHP文件
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>form表单提交ajax</title> <script src="../../../../jquery-1.8.3.min.js"></script> </head> <body> <button onclick="dj()">点击</button> <div class="box"></div> </body> </html> <script> $(function(){ $("button").click(function(){ $(".box").load("./1.php"); }) }) </script>