摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ES6</title> <script type="text/javascript" src="js/jquery.min.js"></script> <script type=" 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ES6</title> <script type="text/javascript" src="js/jquery.min.js"></script> </head> <body> 阅读全文
摘要:
<!DOCTYPE> <html lang="zh-en"> <head> <title>js实现简单留言板</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <link href="css/boot 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>设计模式</title> <script src="jquery.min.js"></ 阅读全文
摘要:
<!doctype html> <html lang='en'> <head> <title>JSON</title> <script src="jquery-1.11.0.min.js"></script> <script> window.onload = function(){ var obj 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>正则表达式测试</title> <link rel="stylesheet" href="b 阅读全文
摘要:
<!doctype html> <html lang='en'> <head> <title>this</title> <script src="jquery-1.11.0.min.js"></script> <script> window.onload = function(){ //函数中引用 阅读全文
摘要:
<!doctype html> <html lang='en'> <head> <title>闭包递归</title> <script> window.onload = function(){ //闭包 能够读取其它函数内部变量的函数 //JS 中每个函数都是个体,它是可以获取父元素的信息,但是父元 阅读全文
摘要:
HTML <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>表单校验</title> <link href="css/demo.css" 阅读全文
摘要:
<!doctype html> <html lang='en'> <head> <title>原型</title> <script> window.onload = function(){ //apply() call()区别 function Cat(name,color){ //猫对象 this 阅读全文