上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 99 下一页
摘要: Outcome: Code: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 <style type="text/css"> 7 *{margin: 10 10 10 10;paddin 阅读全文
posted @ 2020-07-31 10:11 Jasper2003 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Outcome: Code: 1 <!doctype html> 2 <html> 3 <head> 4 <style> 5 #div1{ width:600px; height:400px; margin:0 auto; } 6 #div1 div{ width:100px; height:100 阅读全文
posted @ 2020-07-30 10:00 Jasper2003 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Outcome: Code: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <style type="text/css"> 7 *{margin: 0; padding 阅读全文
posted @ 2020-07-29 12:49 Jasper2003 阅读(76) 评论(0) 推荐(0) 编辑
摘要: INTRODUCTION From the beginning of the nineteenth century, the pressures of industrialization and globalization, new nationalist movements, and in gen 阅读全文
posted @ 2020-07-28 09:51 Jasper2003 阅读(325) 评论(0) 推荐(0) 编辑
摘要: PART 1: Atlantic Revolutions, 1750-1914 / Industrial Revolution / European Colonization 1759-1914 INTRODUCTION The scientific revolution was followed 阅读全文
posted @ 2020-07-28 09:37 Jasper2003 阅读(432) 评论(0) 推荐(0) 编辑
摘要: Outcome: Code: <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> *{margin: 0; padding: 0; text-deco 阅读全文
posted @ 2020-07-27 08:19 Jasper2003 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 分步解析 AJAX 每个步骤 步骤 1 : AJAX 请求和相应图示 步骤 2 : 创建XHR 创建XHR对象 XMLHttpRequestXHR对象是一个javascript对象,它可以在用户没有感觉的情况下,就像背后运行的一根小线程一般,悄悄的和服务器进行数据交互AJAX就是通过它做到无刷新效果 阅读全文
posted @ 2020-07-27 08:00 Jasper2003 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 通过AJAX Asynchronous JavaScript And XML 实现异步刷新 示例 1 : 用于用户名校验的页面 准备一个JSP页面,叫做checkName.jsp用于校验提交的用户名是否存在如果提交的用户名是abc就打印存在,否则就可以使用 提示:使用F5回到原来页面 <html> 阅读全文
posted @ 2020-07-27 07:51 Jasper2003 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : JSON对象与JavaScript对象 JavaScript对象 分内置对象(Number,String,Array,Date,Math)和自定义对象JSON就是自定义对象,只不过是以JSON这样的数据组织方式表达出来所以不存在JSON对象与JavaScript对象的转换问题 示例 2 阅读全文
posted @ 2020-07-26 10:38 Jasper2003 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 示例 1 : 创建JSON数组 通过方括号[] 创建JSON 数组 <script> var heros= [ {"name":"盖伦","hp":616}, {"name":"提莫","hp":313}, {"name":"死歌","hp":432}, {"name":"火女","hp":389} 阅读全文
posted @ 2020-07-26 10:28 Jasper2003 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 99 下一页