摘要: <title>07.Ajax.post</title> <script src="myAjax2.js"></script> <script> window.addEventListener('load', function() { var btn = document.querySelector( 阅读全文
posted @ 2021-01-12 14:53 闭上耳朵 阅读(70) 评论(0) 推荐(0) 编辑
摘要: <!-- 引入自己封装的 Ajax文件 测试下怎么用 --> <script src="myAjax.js"></script> <script> window.addEventListener('load', function() { var btn = document.querySelecto 阅读全文
posted @ 2021-01-12 14:48 闭上耳朵 阅读(32) 评论(0) 推荐(0) 编辑
摘要: <script> // 问题1:所有浏览器都支持Ajax 除了IE5 IE6 如果让所有浏览器都支持就加上以下代码 13 - 18行 window.addEventListener('load', function() { var btn = document.querySelector('butt 阅读全文
posted @ 2021-01-12 14:46 闭上耳朵 阅读(49) 评论(0) 推荐(0) 编辑
摘要: <!-- 1. 什么是Ajax? AJAX 是与服务器交换数据并更新部分网页的艺术,在不重新加载整个页面的情况下。 --> <script> window.addEventListener('load', function() { var btn = document.querySelector(' 阅读全文
posted @ 2021-01-12 14:44 闭上耳朵 阅读(101) 评论(0) 推荐(0) 编辑
摘要: <body> <form action="03.post.file.php" method="POST" enctype="multipart/form-data"> <!-- 用表单上传文件 必须添加这个属性: enctype="multipart/form-data" 后端才能拿到这个文件 -- 阅读全文
posted @ 2021-01-12 14:42 闭上耳朵 阅读(82) 评论(0) 推荐(0) 编辑
摘要: <?php // print_r($_GET); 拿到get方法提交的数据 02.get-post.html表单的数据 // echo $_GET['username']; // 拿到用户名 // echo $_GET['user_Pwd']; // 拿到密码 // print_r($_POST); 阅读全文
posted @ 2021-01-12 14:41 闭上耳朵 阅读(50) 评论(0) 推荐(0) 编辑
摘要: <body> <form action="02.get-post.php" method="POST"> <!-- form标签 可以提交到远程服务器 也可以提交到自己的服务器 写到 action属性里面 提交方式有两种 写在 method里面 一种是 get 另一种是 post--> <!-- 提 阅读全文
posted @ 2021-01-12 14:40 闭上耳朵 阅读(48) 评论(0) 推荐(0) 编辑
摘要: <?php // 1.js中的注释 PHP也一样 // 单行 /* 多行 */ // 2.JS中如何定义变量 // var num = 10; JS //$num = 10; // PHP // 3.JS如何打印内容 // console.log() // JS // echo $num; // P 阅读全文
posted @ 2021-01-12 14:39 闭上耳朵 阅读(76) 评论(0) 推荐(0) 编辑