windows对象
获取浏览器地址栏 地址$(function () { var url= location alert(url) })
空链接不跳转
<a href='javascript:void(0);'></a>
改字色:
function setFontSize(size){ document.getElementById('tab_content').style.fontSize=size+'px' } function changeColor(color){ document.getElementById('tab_content').style.background=color } 文字大小选择 【小】 【中】 【大】 保护色![]()
![]()
![]()
![]()
![]()
![]()
![]()
条件切换记得加 return false
$(document).on('click', '.father-area', function () { if($(this).next().is(":visible")) { $(this).next().hide(200); return false; //这里如果不加,再你条件切换时,会整个流程都走一遍。 }else { $(this).next().show(200); return false; } })