摘要:
http://caibaojian.com/unicode.html 阅读全文
摘要:
<!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="initial-scale=1.0, us 阅读全文
摘要:
display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden; 阅读全文
摘要:
回到当前页面 //1.创建对象 var xhr = null; if(window.XMLHttpRequest){ xhr = new XMLHttpRequest();//标准浏览器 }else{//IE浏览器 xhr = new ActiveXObject("Microsoft.XMLHTTP 阅读全文
摘要:
变量还是自己的好 局部变量比较吃香 所以引出闭包来解决问题 闭包 阅读全文
摘要:
row wrap 阅读全文
摘要:
阅读全文
摘要:
function goBack() { window.history.back() } function goForward() { window.history.forward() } 阅读全文
摘要:
/*是否带有小数*/ function isDecimal(strValue ) { var objRegExp= /^\d+\.\d+$/; return objRegExp.test(strValue); } /*校验是否中文名称组成 */ function ischina(str) { var 阅读全文