博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2007年10月16日

摘要: <!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"><!--savedfromurl=(0036)http://www.bkye.com/tool/html-js.htm--><HTMLxmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>HTML与JS 阅读全文

posted @ 2007-10-16 13:38 codingsilence 阅读(218) 评论(0) 推荐(0)

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <script type="text/javascript"> // <![CDATA[ function copy_clip(copy){ if (window.clipboardData){ window.clipboardData.setData("Text", 阅读全文

posted @ 2007-10-16 09:31 codingsilence 阅读(166) 评论(0) 推荐(0)

摘要: 大家都知道欺骗IE不出现Flash激活框的方法很简单只要在页面上面引入一个js文件,然后用js来控制flash的html代码输出即可。但是如果我们的脚本是动态加载的就会有两种情况,看以下代码 程序代码 vars=docuemnt.createElement("script"); s.src=src; docuemnt.getElementsByTagName("head")[0].appendChild(s); 程序代码 vars=docuemnt.createElement("script"); docuemnt.getElemen 阅读全文

posted @ 2007-10-16 09:30 codingsilence 阅读(131) 评论(0) 推荐(0)

摘要: //-------- //检查当前浏览器是否为Netscape //-------- functionisNetscape(){ app=navigator.appName.substring(0,1); if(app=='N')returntrue; else{returnfalse;} } //-------- //保存当前Form表单(仅适用于IE浏览器) //-------- functionformSaveCheck(fileName){ if(isNetscape()){alert("Sorry,thesefunctionisnotsupported&qu 阅读全文

posted @ 2007-10-16 09:26 codingsilence 阅读(202) 评论(0) 推荐(0)

摘要: Ajallerix : AJAX, simple, fast Web image gallery demo ; at Novell AJAX - microlink pattern tutorial : A microlink is a link that opens up content below it. Ajax BBC News RSS Reader : demo by Nigel Crawley AJAX Chat in Python with Dojo : at AquaAjax Ajax Chess : multiplayer chess Ajax examples at Ba. 阅读全文

posted @ 2007-10-16 09:06 codingsilence 阅读(103) 评论(0) 推荐(0)

摘要: 一些常用的Ajax框架很多朋友开发Ajax应用都是使用asp.net ajax框架,在.Net平台下这无疑是个很好的选择,但不同的项目有不同的需求,某些时候可能另外一些框架会更适合我们的项目.下面这些是我以前整理的一些Ajax框架,希望能对一些朋友有用.一、基于浏览器的Ajax框架1、 AjaxCall网址:http://www.ajaxify.com/run/testAjaxCaller/库文件代码比较简单,比较容易上手,并且支持脚本调试。2、 Flash JavaScript Integration Kit网址:http://weblogs.macromedia.com/flashJava 阅读全文

posted @ 2007-10-16 09:04 codingsilence 阅读(159) 评论(0) 推荐(0)