前端经验

文字收缩、展开(默认展开)

html: p span JavaScript 是属于网络的脚本语言!... / span a href = javascript:; 收缩 / a / p css: a { text-decoration : none;} /* 去掉a的默认下划线*/ js: var oP = document .getElementsByTagName( p )[ 0 ];var oSpan...

前端经验

JavaScript字符串截取两种原生函数

1、 substring( ) 截取字符串:substring(a,b ); a:从0数,第a位开始; b:取b个字符串; 例如: substring( 2,3)表示从0数到2,然后截取3个字符(包括第2位字符); 如果后面数字比前面数字大...

前端经验

JS简单的倒计时跳转代码

!doctype html html head meta charset = utf-8 title 简单的倒计时--跳转 / title script src = http://libs.baidu.com/jquery/1.11.3/jquery.min.js / script style * { margin : 0px ; padding : 0px ; } .box { width : 450px ; border : 1px sol...

前端经验

JavaScript获取判断浏览器类型

!doctype html html head meta charset = utf-8 title 获取判断浏览器类型 / title script src = http://libs.baidu.com/jquery/1.11.3/jquery.min.js / script style div { color :blue;} / style / head body div style = color: #ccc; 您使用的...

前端经验

JS去除字符串中的所有空格

!doctype html html head meta charset = utf-8 title 去除字符串中的所有空格 / title script src = http://libs.baidu.com/jquery/1.11.3/jquery.min.js / script / head body script function Trim ( str ) { var result; result = str.replace...

前端经验

JQ鼠标悬停边框围绕动态显示效果

!doctype html html head meta charset = utf-8 title 鼠标悬停边框围绕效果 / title script src = http://libs.baidu.com/jquery/1.8.3/jquery.min.js / script style * { margin : 0 ; padding : 0 ; list-style :none;} img { border : 0 ; widt...