9eFish - 带有 Javascript 标签的文章
1
臭虫

CodeProject: 7 Tips for Loading JavaScript Rich Web 2.0-like Sites Significantly Faster. Free source code and programming help

xgluxvxgluxv 发表于 72 天, 13 小时, 22 分钟 之前
Wednesday, January 06, 2010 1:44:07 AM GMT Wednesday, December 30, 2009 1:16:06 AM GMT
Introduction When you create rich Ajax applications, you use external JavaScript frameworks and you have your own homemade code that drives your application. The problem with well known JavaScript framework is, they offer rich set of features which are not always necessary in its entirety. You may end up using only 30% of jQuery but you still download the full jQuery framework. So, you are downloading 70% unnecessary scripts. Similarly, you might have written your own JavaScripts which are not always us... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.codeproject.com
标签: Javascript
1
臭虫

Javascript DOM 控制系列教程一 -实例JS教程 | 彬Go

adminadmin 发表于 152 天, 11 小时, 11 分钟 之前
Tuesday, October 20, 2009 1:34:58 AM GMT Sunday, October 11, 2009 3:27:03 AM GMT
JavaScript   JavsScript是可以在各种不同环境下使用的动态的、松散类型(loosely typed)、基于原型的编程语言。除了作为流行的Web客户端程序语言,它还可以使用于IDE插件、PDF文件或给予其它平台甚至更为抽象的概念。   JavaScript 是由来自Netscape得Brendan Eich创造的基于ECMAScript标准(ECMA-262)的语言。他最初被命名为LiveScript,但后来被改为JavaScript,这也是很多人会把它跟java混淆的原因之一。 (more)
类别: UX | 点击: 0 | 评论 | | 源: blog.bingo929.com
标签: dom, Javascript, Javascript DOM 控制系列教程, 彬Go
1
臭虫

A List Apart: Articles: JavaScript MVC

dotlivedotlive 发表于 203 天, 13 小时, 21 分钟 之前
Wednesday, August 26, 2009 1:46:13 AM GMT Friday, August 21, 2009 1:16:34 AM GMT
August 18, 2009JavaScript MVC by Jonathan Snook Published in: Scripting| Discuss this article » Once a bit player, JavaScript increasingly takes center stage. Its footprint—the space it takes up on our servers and in our development schedules—continues to grow. So how can we make our JavaScript more reusable and easier to maintain? Perhaps MVC will offer some clues. While MVC is a familiar term to those in back-end application development—using frameworks such as Struts, Ruby... (more)
类别: UX | 点击: 1 | 评论 | | 源: www.alistapart.com
标签: Javascript, MVC
1
臭虫

Javascript里的方法 – part I - LA.NET [EN]

dotlivedotlive 发表于 203 天, 13 小时, 29 分钟 之前
Wednesday, August 26, 2009 1:46:13 AM GMT Friday, August 21, 2009 1:09:14 AM GMT
Functions in Javascript – part IPublished Thu, Aug 20 2009 14:31 Douglas Crockford says that the best part of Javascript is its implementation of functions. And I think that he’s absolutely right! The first thing you should keep in mind is that functions are objects in Javascript! The second interesting thing about functions is that they can be invoked (I guess that’s why they’re called functions, right?). The simples way to create a function is through a function li... (more)
类别: UX | 点击: 0 | 评论 | | 源: msmvps.com
标签: Javascript, LA.NET [EN]
1
臭虫

对象和原型属性 - LA.NET [EN]

dotlivedotlive 发表于 203 天, 13 小时, 31 分钟 之前
Wednesday, August 26, 2009 1:46:13 AM GMT Friday, August 21, 2009 1:06:48 AM GMT
Objects and the prototype propertyPublished Thu, Aug 20 2009 14:01 In the previous post, we’ve started looking at objects. At the time, I’ve said that next post would be on functions, but after some thinking, I’ll be talking about the “hidden” prototype property. Besides “custom” properties specified through name/value pairs, all Javascript objects have a special property accessed through the prototype name. This property references the so called prototype object (whi... (more)
类别: UX | 点击: 0 | 评论 | | 源: msmvps.com
标签: Javascript, LA.NET [EN]
1
臭虫

简单的Javascript类型和对象- LA.NET [EN]

dotlivedotlive 发表于 203 天, 13 小时, 33 分钟 之前
Wednesday, August 26, 2009 1:46:13 AM GMT Friday, August 21, 2009 1:04:44 AM GMT
Simple types and objects in JavascriptPublished Thu, Aug 20 2009 12:27 When I first started working with Javascript, I was a little surprise to know that you’ve got two “basic” types in BLOCKED SCRIPT there are simple types and objects. Simple types are numbers, strings, bools, null and undefined. Everything else is an object. Objects are associated with two interesting features in BLOCKED SCRIPT unlike most OO languages, there really isn’t the concept of a class in... (more)
类别: UX | 点击: 0 | 评论 | | 源: msmvps.com
标签: Javascript, LA.NET [EN]
1
臭虫

Scopes and contexts in Javascript - LA.NET [EN]

dotlivedotlive 发表于 207 天, 13 小时, 24 分钟 之前
Thursday, August 20, 2009 1:57:58 AM GMT Monday, August 17, 2009 1:13:38 AM GMT
Scopes and contexts in JavascriptPublished Fri, Aug 14 2009 10:16 [Update: thanks to Howard, I’ve updated the typo regarding global functions.] In a previous post, we’ve talked about scopes. Today we’ll be talking about execution contexts. Every line of JS code you write runs in a certain execution context. If you’re coming to JS from an object oriented language, then you should recognize this concept. In Javascript, you can use the this keyword to access the current... (more)
类别: UX | 点击: 0 | 评论 | | 源: msmvps.com
标签: Javascript, LA.NET [EN]
1
臭虫

Javascript - understanding scope - LA.NET [EN]

adminadmin 发表于 210 天, 11 小时, 20 分钟 之前
Wednesday, August 19, 2009 1:54:46 AM GMT Friday, August 14, 2009 3:18:21 AM GMT
Javascript - understanding scopePublished Thu, Aug 13 2009 15:32 Since I’ve been digging into JQuery, I though that it would also be a good idea to write a little bit more about Javascript. In my (limited) experience, I’ve met many developers who say that they really know Javascript and that it’s a really simple language. The problem is that they have lots of trouble in understanding and explaining the basic concepts/feature of the language. I’m not really a Javascrip... (more)
类别: UX | 点击: 0 | 评论 | | 源: msmvps.com
标签: Javascript, LA.NET [EN]
1
臭虫

Cookies揭秘 [Asp.Net, Javascript] - 张子秋的博客 - 博客园

xgluxvxgluxv 发表于 217 天, 13 小时, 37 分钟 之前
Monday, August 10, 2009 1:39:24 AM GMT Friday, August 07, 2009 1:01:12 AM GMT
Cookies揭秘 [Asp.Net, Javascript]一,前言 Cookies想必所有人都了解, 但是未必所有人都精通。本文讲解了Cookies的各方面知识, 并且提出来了最佳实践。这是笔者在日常工作中的积累和沉淀。  二,基础知识1.什么是Cookies Cookie 是一小段文本信息,伴随着用户请求和页面在 Web 服务器和浏览器之间传递。Cookie 包含每次用户访问站点时 Web 应用程序都可以读取的信息。 例如,如果在用户请求站点中的页面时应用程序发送给该用户的不仅仅是一个页面,还有一个包含日期和时间的 Cookie,用户的浏览器在获得页面的同时还获得了该 Cookie,并将它存储在用户硬盘上的某个文件夹中。 以后,如果该用户再次请求您站点中的页面,当该用户输入 URL 时,浏览器便会在本地硬盘上查找与该 URL 关联的 Cookie。如果该 Cookie 存在,浏览器便将该 Cookie 与页请求一起发送到您的站点。然后,应用程序便可以确定该用户上次访问站点的日期和时间。您可以使用这些信息向用户显示一条消息,也可以检查到期日期。 Cookie 与网站关联,而不是与特... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.cnblogs.com
标签: asp.net, Cookies, Javascript
1
臭虫

JavaScript File Management - Kazi Manzur Rashid's Blog

adminadmin 发表于 228 天, 22 小时, 8 分钟 之前
Wednesday, July 29, 2009 3:04:22 AM GMT Sunday, July 26, 2009 4:29:50 PM GMT
As many of you know that I am currently involved in developing few UI Components for the ASP.NET MVC Framework (Hint: It is not a personal project, and we do have the plan to make it the source open dual license). In this post, I will discuss about our design decisions regarding how we plan to manage the javascript files with our UI Components. When developing a typi... (more)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net mvc, Javascript
1
臭虫

详解Javascript 中的this指针 - KevinYang - 博客园

carolhaozicarolhaozi 发表于 241 天, 9 小时, 22 分钟 之前
Wednesday, July 15, 2009 3:05:47 AM GMT Tuesday, July 14, 2009 5:16:26 AM GMT
前言 Javascript是一门基于对象的动态语言,也就是说,所有东西都是对象,一个很典型的例子就是函数也被视为普通的对象。Javascript可以通过一定的设计模式来实现面向对象的编程,其中this “指针”就是实现面向对象的一个很重要的特性。但是this也是Javascript中一个非常容易理解错,进而用错的特性。特别是对于接触静态语言比较久了的同志来说更是如此。示例说明 我们先来看一个最简单的示例: (more)
类别: UX | 点击: 1 | 评论 | | 源: www.cnblogs.com
标签: Javascript
1
臭虫

Web Site Improvements Using jQuery and jQuery UI: A Brownfield Development Series

dotlivedotlive 发表于 252 天, 12 小时, 39 分钟 之前
Tuesday, July 07, 2009 2:00:18 PM GMT Friday, July 03, 2009 1:58:34 AM GMT
Previously on Extreme ASP.NET Makeover… Improving User Interaction Integrating jQuery UI into ScrewTurn Wiki Re-Theming ScrewTurn Wiki Conclusion (more)
类别: UX | 点击: 4 | 评论 | | 源: msdn.microsoft.com
标签: asp.net, Javascript, JQuery, JQuery UI
1
臭虫

24 JavaScript Best Practices for Beginners - Nettuts+

adminadmin 发表于 265 天, 7 小时, 29 分钟 之前
Thursday, June 25, 2009 2:39:54 AM GMT Saturday, June 20, 2009 7:08:51 AM GMT
24 JavaScript Best Practices for BeginnersJun 16th in Javascript & AJAX by Jeffrey Way As a follow-up to "30 HTML and CSS Best Practices", this week, we'll review JavaScript! Once you've reviewed the list, be sure to let us know what little tips you've come across! Author: Jeffrey Way Hi, I'm Jeff. I'm the editor of Nettuts+, and the Site Manager of Theme Forest. I spend too much time in front of the computer and find myself telling my fiance', "We'll go in 5 minutes!" far too often. I just ... (more)
类别: UX | 点击: 0 | 评论 | | 源: net.tutsplus.com
标签: Best Practices, Javascript
1
臭虫

CodeProject: JavaScript For Beginners.

dotlivedotlive 发表于 273 天, 11 小时, 7 分钟 之前
Wednesday, June 17, 2009 5:40:20 AM GMT Friday, June 12, 2009 3:31:05 AM GMT
快速学习javascript的教程 (more)
类别: UX | 点击: 1 | 评论 | | 源: www.codeproject.com
标签: Javascript, Javascript beginner
1
臭虫

使用visual studio自动连接和最小化JavaScript-Encosia

xgluxvxgluxv 发表于 294 天, 11 小时, 29 分钟 之前
Monday, May 25, 2009 4:41:42 AM GMT Friday, May 22, 2009 3:09:18 AM GMT
当你开始开发一个比较复杂的web客户端的功能,管理javascript的大小和样子就是一个恼人的工作了,这里介绍了一个方法来帮你.... (more)
类别: Architecture | 点击: 1 | 评论 | | 源: encosia.com
标签: Javascript, visual studio
1
臭虫

InfoQ: JQuery - a Javascript DOM Library

carolhaozicarolhaozi 发表于 304 天, 13 小时, 55 分钟 之前
Wednesday, May 13, 2009 1:54:55 AM GMT Tuesday, May 12, 2009 12:43:03 AM GMT
Joseph Molnar discusses scanR Joseph Molnar discusses scanR, choosing .Net for scanR, scanR architecture, mobile carriers, scaling, challenges, .Net components and libraries used, problems and solutions, and managing scanR. May 11, 2009, (more)
类别: UX | 点击: 1 | 评论 | | 源: www.infoq.com
标签: Javascript, JQuery
1
臭虫

写个 JavaScript 异步调用框架 (Part 3 - 代码实现)

adminadmin 发表于 309 天, 7 小时, 24 分钟 之前
Friday, May 08, 2009 6:04:26 AM GMT Thursday, May 07, 2009 7:13:45 AM GMT
在上一篇文章里,我们说到了要实现一个Cat.Async.Operation类,通过addCallback方法传递回调函数,并且通过yield方法返回回调结果。现在我们就来实现这个类吧。 (more)
类别: UX | 点击: 0 | 评论 | | 源: www.cnblogs.com
标签: Javascript, 异步调用
1
臭虫

写个 JavaScript 异步调用框架 (Part 2 - 用例设计)

carolhaozicarolhaozi 发表于 309 天, 12 小时, 27 分钟 之前
Thursday, May 07, 2009 7:35:12 AM GMT Thursday, May 07, 2009 2:11:07 AM GMT
在上一篇文章里说到,我们要设计一个异步调用框架,最好能够统一同步异步调用的接口,同时具体调用顺序与实现方式无关。那么我们现在就来设计这样一个框架的用例。 (more)
类别: UX | 点击: 1 | 评论 | | 源: www.cnblogs.com
标签: ajax, Javascript, 异步调用
1
臭虫

写个 JavaScript 异步调用框架 (Part 1 - 问题 & 场景)

xgluxvxgluxv 发表于 310 天, 11 小时, 30 分钟 之前
Friday, May 08, 2009 6:04:26 AM GMT Wednesday, May 06, 2009 3:07:52 AM GMT
在Ajax应用中,调用XMLHttpRequest是很常见的情况。特别是以客户端为中心的Ajax应用,各种需要从服务器端获取数据的操作都通过XHR异步调用完成。然而在单线程的JavaScript编程中,XHR异步调用的代码风格实在是与一般的JavaScript代码格格不入。 (more)
类别: UX | 点击: 1 | 评论 | | 源: www.cnblogs.com
标签: ajax, Javascript, 异步调用
1
臭虫

CodeProject: 使用c#和javascript在google map里显示你的数据

carolhaozicarolhaozi 发表于 311 天, 12 小时, 44 分钟 之前
Thursday, May 07, 2009 7:35:12 AM GMT Tuesday, May 05, 2009 1:54:03 AM GMT
Almost every one of us who uses internet has seen the Google map, Google earth and Google street view, etc. The good thing is that Google also shares its products in a manner such that you can customize them according to your needs. In this article, I am going to share a simple technique to show your data on Google map. (more)
类别: Web Form | 点击: 11 | 评论 | | 源: www.codeproject.com
标签: C#, google map, Javascript
Previous 1 2 Next