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
相关文档:
//获取页面数据
function getPageSize(){
var xScroll, yScroll;
if (window.innerHeight && window.scrollMaxY) {
xScroll = document.body.scrollWidth;
yScroll = window.inn ......
添加
<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 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 ......
var currItem = listbox.options[currIndex];
var prevItem = listbox.options[currIndex - 1];
&n ......
<SCRIPT LANGUAGE="JavaScript">
<!--
// Trim() , Ltrim() , RTrim()
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
String.prototype.LTrim = function()
{
return this.replace(/(^\s*)/g, "");
}
String.prototype.RTrim = functio ......