让横条没有:
scroll;overflow-x: hidden"> 两个都去掉? 更简单了 32.怎样去掉图片链接点击后,图片周围的虚线? 33.电子邮件处理提交表单 34.在打开的子窗口刷新父窗口的代码里如何写? window.opener.location.reload() 35.如何设定打开页面的大小 打开页面的位置 36.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动 body {background-image: url(logo.gif);background-repeat: no-repeat; background-position: center;background-attachment: fixed} 37.检查一段字符串是否全由数字组成 -- functioncheckNum(str){returnstr.match(//D/)==null} alert(checkNum("1232142141")) alert(checkNum("123214214a1")) //--> 38.获得一个窗口的大小 document.body.clientWidth;document.body.clientHeight 39.怎么判断是否是字符 if(/[^/x00-/xff]/g.test(s))alert("含有汉字"); elsealert("全是字符"); 40.TEXTAREA自适应文字行数的多少 41.日期减去天数等于第二个日期 functioncc(dd,dadd) { //可以加上错误处理 vara=newDate(dd) a=a.valueOf() a=a-dadd*24*60*60*1000 a=newDate(a) alert(a.getFullYear()+"年"+(a.getMonth()+1)+"月"+a.getDate()+"日") }cc("12/23/2002",2) 42.选择了哪一个Radio functioncheckme() foreachobinradio1 ifob.checkedthenwindow.alertob.value next endfunction