易截截图软件、单文件、免安装、纯绿色、仅160KB

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



相关文档:

用JavaScript去除字符串的首尾空格。

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,"");
} ......

javascript动态添加/删除div


添加
<script>
var oDiv = document.createElement("DIV");
oDiv.id = "shop01";
oDiv.style.top = 200;
oDiv.style.left = 200;
oDiv.style.background = '#FFFF00';
oDiv.style.visibility = 'visible';
oDiv.innerHTML="123123"
document.body.appendChild(oDiv ......

Javascript 中对HTML编码和解码的方法

String.prototype.HTMLEncode = function() {
var temp = document.createElement ("div");
(temp.textContent != null) ? (temp.textContent = this) : (temp.innerText = this);
var output = temp.innerHTML;
temp = null;
return output;
}
String.prototype.HTMLDecode = function() {
var temp = doc ......

ReportViewer JavaScript API


JavaScript API
One of the new features we added to the ASP.Net Report Viewer in Visual Studio 2010 is a JavaScript API to allow you to interact with the viewer on client.  In reading many of the posts on the report controls forum, we found that many people struggle when implementing a custom ......

JavaScript 实现的简繁转换功能

//简繁转换功能
// 将指定元素中的文本转换为简体
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 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号