53本经典javascript电子书
JavaScript A Beginner's Guide 3rd Edition
锋利的jQuery
精通Dojo
Using The Dojo JavaScript Library To Build Ajax Applications
Professional JavaScript For Web Developers 2nd Edition
JavaScript语言精粹
Css Javascript动态网页设计与制作
Learning jQuery1.3
Pro Javascript Ria Techniques
Pro JavaScript Design Patterns
JavaScript The Good Parts
jQuery基础教程
jQuery in Action
Enterprise AJAX
Dom Scripting Dynamic Web Design Techniques
Learning jQuery
jQuery Reference Guide
The Art and Science of JavaScript
Simply JavaScript
The Essential Guide to DreamweaverCS3 with CSS Ajax and PHP
Ajax Bible
Ajax in Practice
Ajax on Java
JavaScript and DHTML Cookbook 2nd Edition
JavaScript Bible 6th Edition
Practical JavaScript DOM Scripting and Ajax
Prototype and Scriptaculous In Action
Web Development Solutions
征服Ajax
Pro Javascript Techniques
JavaScript A Beginner's Guide 3rd Edition
锋利的jQuery
精通Dojo
Using The Dojo JavaScript Library To Build Ajax Applications
Professional JavaScript For Web Developers 2nd Edition
JavaScript语言精粹
Css Javascript动态网页设计与制作
Learning jQuery1.3
Pro Javascript Ria Techniques
Pro JavaScript Design Patterns
相关文档:
String.prototype.Trim=function(){
returnthis.replace(/(^\s*)|(\s*$)/g,"");
}
String.prototype.LTrim=function(){
returnthis.replace(/(^\s*)/g,"");
}
String.prototype.RTrim=function(){
returnthis.replace(/(\s*$)/g,"");
} ......
<script type="text/javascript">
function dayChange(year,month,day){
var selectYear = document.getElementById(year);
var selectMonth = document.getElementById(month);
var selectDay = document.getElementById(day);
va ......
<html>
<head>
<script language="javascript">
function MyClick() ......
正则表达式是一个描述字符模式的对象。
JavaScript的RegExp对象和String对象定义了使用正则表达式来执行强大的模式匹配和文本检索与替换函数的方法.
'***********************
' \\JavaScript//
'
'***********************
在JavaSc ......
//简繁转换功能
// 将指定元素中的文本转换为简体
function bodytojt(x)
{
var bodys=document.getElementById(x);
bodys.innerHTML=Simplized(bodys.innerHTML);
}
// 将指定元素中的文本转换为繁体
function bodytoft(x)
{
var bodys=document.getElementById(x);
bodys.innerHTML=Traditionalized(bodys.in ......