11 2012 档案

摘要:<!-method默认一般为"get",target默认为"self"--> <form action="form_action.asp" enctype="text/plain"> <p>First name: <input type="text" name="fname" /></p> <!-input的"/"可要可不要,在xhtml里是要的--> <p>Last na 阅读全文
posted @ 2012-11-06 21:32 wuhao12 阅读(630) 评论(0) 推荐(0)
摘要:var el = document.getElementById("cc");el.innerHTML = "DSDKF";//页面需要回流,但不马上做var xt= el.getClientHeight;//强制回流,但不会重绘//alert(xt);//确认之前,页面会重绘;alert是阻塞脚本运行的,在“确认”之后页面不会立即重绘清除alert框//console.log(xt);firefox下是异步的,而ie下是同步的。var t = new Date();while(new Date() - t < 5*1000);//运行完了,再进行 阅读全文
posted @ 2012-11-03 12:08 wuhao12 阅读(278) 评论(0) 推荐(0)