摘要:
location.hash属性介绍 例如URL: http://wwww.a.com/index#rhythmk 通过location.hash 我们将获取到 #rhythmk。 默认浏览器会滚动至id值为rhythmk的div,或者滚动至 的标签处。 可以通过js动态去修改页面的loca... 阅读全文
摘要:
一、一维数组排序 1.1、sort以升序对数组排序$arrSort=array(3,56,6,8,9,7,6);sort($arrSort);print_r($arrSort);输出: Array( [0] => 3 [1] => 6 [2] => 6 [3] => 7 ... 阅读全文