摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <button>获取教育信息</button> <button>获取专长信息</button> </body> <script src 阅读全文
2017年3月18日
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <select > <option value="">品牌</option> <option value="">宝马</option> 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <select > <option value="">品牌</option> <option value="">宝马</option> 阅读全文
摘要:
transform-origin: bottom 旋转的中心点 backface-visibility:hidden 旋转九十度之后影藏 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> *{ margin: 0; padding: 0; list-style: none; } .nav 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script type="text/javascript"> var arr = [1,3,5,5,4,116,2, 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script src="jquery-1.7.2.min.js" type="text/javascript" ch 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> *{ margin: 0; padding: 0; list-style: none; } img{ 阅读全文
2017年3月16日
摘要:
一 通用的typeof 方法 typeof ture 输出 Boolean typeof 123 输出 number ..... 但是 typeof 无法判断 null underfind 数组 和 对象类型 因为都返回 object 二、Object.prototype.toString.call 阅读全文