一般我们会var text=document.getElementById("text"); 拿到text元素再定义属性,但是如果要拿的id很多,就会发现一个页面里面,document.getElementById就占一大块代码,其实只要写一次就够了:function $(e){ return document.getElementById(e);}有了这个函数,想设置text为显示,那么就写:$("text").display="block";是不是简单很多呢? Read More
posted @ 2013-03-29 17:34 tinyphp Views(276) Comments(0) Diggs(0) Edit
点击后:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <style> body{font-size:14px;} input{border:none;font-size:14px;} .show{} .hide{border:1px solid #ccc;background-color:#eee;width:150px;height:2 Read More
posted @ 2013-03-29 17:08 tinyphp Views(710) Comments(0) Diggs(0) Edit