javascript
文章平均质量分 56
ChesterQin
improve step by step
展开
-
js区分浏览器
firefox/ie function isIE(){if(document.all){ return true;}else{ return false;}} ie6/ie7if(document.all){ if (window.XMLHttpRequest) { document.write("原创 2009-04-13 14:14:00 · 491 阅读 · 0 评论 -
Javasciprt Visual Event
http://www.sprymedia.co.uk/article/Visual+Event IntroductionWhen working with events in Javascript, it is often easy to loose track of what events are subscribed where. This is particularly转载 2011-06-16 10:37:00 · 698 阅读 · 0 评论 -
Anti-Forgery Request Recipes For ASP.NET MVC And AJAX
http://weblogs.asp.net/dixin/archive/2010/05/22/anti-forgery-request-recipes-for-asp-net-mvc-and-ajax.aspx Anti-Forgery Request Recipes For ASP.NET MVC And AJAX This post discusses solutions转载 2010-05-24 23:52:00 · 2410 阅读 · 0 评论 -
How to preview local image using JS in IE6, IE7, FF3.*
For some security reson new version browser cannot use js to preview local img when use file upload control, it is not convinence for user.if you want preview local image using JS in IE6, IE7,原创 2009-12-28 12:27:00 · 1048 阅读 · 0 评论 -
use noscript html tag when user disable the javascript in browser, guide user how to enable the js in different browser and retu
If user disable the javascript in browser, most site will not view normally, you can pompt user this andshow user a page to guide user how to enable the javascript in different browser. 1. Add n原创 2009-12-24 12:17:00 · 877 阅读 · 0 评论 -
some note about js
1. return false in js event function attached to a when it have a href link to another page, the return false dose not work in FFit is not the reason elms[i].onclick = function(){原创 2009-12-17 17:26:00 · 572 阅读 · 0 评论 -
Preview image in client by JavaScript when upload image in multi-browsers
how to preview image in client by JavaScript when upload image in multi-browsers. It works well in IE6/IE7/IE8/FireFox3.*/Safari4/Chrome3. I think it is worth to you, please take a look.Attached i原创 2010-01-28 23:27:00 · 4325 阅读 · 1 评论 -
javascript图片浏览器的核心——图片预加载
javascript图片浏览器的核心——图片预加载2009-04-06 10:57 网站开发时经常需要在某个页面需要实现对大量图片的浏览,如果考虑流量的话,大可以像pconline一样每个页面只显示一张图片,让用户每看一张图片就需要重新下载一下整个页面。不过,在web2.0时代,更多人愿意用javascript来实现一个图片浏览器,让用户无需等待过长的时间就能看到转载 2009-09-22 09:59:00 · 1223 阅读 · 0 评论 -
WEB前端高性能优化之JavaScript优化
WEB前端高性能优化之JavaScript优化作为一名网站开发WEB前端工程师,对自己开发的网站项目应该尽可能地对其性能进行优化,现在互联网上搜索到的网站性能优化多是翻译转载自Yahoo14条或34条。Yahoo的优化建议关注在大的方面,下面,W3CGroup为大家呈现WEB前端开发高性能优化部分之JavaScript的优化细节!一、避免出现脚本失控不论什么脚本转载 2009-09-22 09:52:00 · 558 阅读 · 0 评论 -
web前端页面性能优化
影响用户访问的最大部分是前端的页面。网站的划分一般为二:前端和后台。我们可以理解成后台是用来实现网站的功能的,比如:实现用户注册,用户能够为文章发表评论等等。而前端呢?其实应该是属于功能的表现。而我们建设网站的目的是什么呢?不就是为了让目标人群来访问吗?所以我们可以理解成前端才是真正和用户接触的。除了后台需要在性能上做优化外,其实前端的页面更需要在性能优化上下功夫,只有这样才能给我们的用户带来更好转载 2009-09-22 09:55:00 · 1005 阅读 · 0 评论 -
offsetParent解释
offsetParent解释offsetParent解释2007-05-18 02:51parentElement 在msdn的解释是Retrieves the parent object in the object hierarchy. 而offsetParent在msdn的解释是Retrieves a reference to the container object that defin转载 2009-09-01 16:03:00 · 2079 阅读 · 0 评论 -
动态div,动态假iframe在该div下以遮住select
MenuArray[0]=new Object();MenuArray[0].name="";MenuArray[0].top=0;MenuArray[0].div=document.createElement("div");MenuArray[0].frame = document.createElement("iframe");MenuArray[1]=new Object原创 2009-06-10 21:26:00 · 1418 阅读 · 0 评论 -
window.popup
var pop;function createTipWindow(){ pop=window.createPopup(); var pbody=pop.document.body; pbody.style.backgroundColor="#f0f8ff";转载 2009-06-10 18:32:00 · 573 阅读 · 0 评论 -
css兼容,js浏览器兼容
ie6下子元素的宽度和高度超过了父元素,父元素会被撑开,会导致这样的问题比如,1行2列2列的宽度大于行宽,本来在ie7下一行的东西就会换行。保证子元素的宽度不会超过父元素。ie6和firefox中父元素的高度会被子元素撑开,使用overflow=hidden可以解决这个问题 在firefox下设定元素的宽度和高度时必须在数字后加上px, 否则在firefox下显示无效。原创 2009-04-09 23:58:00 · 470 阅读 · 0 评论 -
js继承 转帖
Javascript继承 一直想对Javascript再次做一些总结,正好最近自己写了一个小型Js UI库,总结了一下Js的继承机制,在网上也看了一些前辈们博客里的总结,感觉分析不是特别全面。这里仅仅是把自己的学习体会拿出来分享一下,希望对大家学习Javascript有所帮助。 Javascript本身是从Perl语言的语法演变而来的,本质上是脚本语言,随着版本的更新逐渐加入的对面向对象的模转载 2009-04-01 23:46:00 · 3140 阅读 · 1 评论 -
firefox下firsChild和ie下firstChild区别问题
firefox下firsChild和ie下firstChild有区别firefox下文本也算是一个child,所以要在ff下使用firstChild可以结合childNodes和nodeName来达到兼容的目的 先判断浏览器类型:function isIE(){if(document.all){return true;}else{//不一定就是ff原创 2009-04-13 14:31:00 · 1249 阅读 · 0 评论 -
解决iphon,ipad上2次点击
//解决iphon,ipad上2次点击$(document).ready(function () { var sUserAgent = navigator.userAgent.toLowerCase(); var bIsIpad = sUserAgent.match(/ipad/i) == "ipad"; var bIsIphoneOs = sUserAgent.原创 2011-12-07 09:08:07 · 858 阅读 · 0 评论