[摘要]
提高網(wǎng)站性能的方法之一就是將JavaScript文件放到文檔的底部(我在Improve Your Web Site Performance – Tips & Tricks To Get A Good YSlow Rating中討論過(guò))。但是,這有一個(gè)缺點(diǎn)。
問(wèn)題
...[全文]
[摘要]
//校驗(yàn)是否全由數(shù)字組成
function isDigit(s) { var patrn=/^[0-9]{1,20}$/; if (!patrn.exec(s)) return false return true }
//校驗(yàn)登錄名:只能輸入5-20個(gè)以字母開(kāi)頭、可帶數(shù)字、“_”、“.”的字...[全文]
[摘要]
方法一:工廠(chǎng)方式--- 創(chuàng)建并返回特定類(lèi)型的對(duì)象的 工廠(chǎng)函數(shù) ( factory function ) function createCar(color,doors,mpg){ var tempCar = new Object; tempCar.color = color; tempCar.doors ...[全文]