Skip to content

Instantly share code, notes, and snippets.

View marvin1023's full-sized avatar

结一 marvin1023

View GitHub Profile
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta name="format-detection"content="telephone=no,email=no"/>
<meta name="keywords" content="">
<meta name="description" content="">
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="format-detection"content="telephone=no,email=no"/>
<meta name="keywords" content="">
<meta name="description" content="">
<title></title>
//获取元素
var $ = {
byId: function(id) {
return typeof id == "string" ? document.geteleentById(id) : id;
},
byClass: function(cls, parent, tag) {
var parent = parent || document;
var tag = tag || "*";
if(parent.geteleentsByClassName) {
return parent.geteleentsByClassName(cls);