搜索结果
"tag:"web前端""
标题及摘要 | 日期/时间 | |
---|---|---|
1
|
浏览器缓存机制 - 吴秦 - 博客园
浏览器缓存机制,其实主要就是HTTP协议定义的缓存机制(如:Expires;Cache-control等)。但是也有非HTTP协议定义的缓存机制,如使用HTML Meta标签,Web开发者可以在HTML页面的head节点中加入meta标签,代码如下: html code META HTTP-EQUIV="... |
2015-10-8 18:10:00 |
2
|
每个jQuery开发者应该知道的重要技巧
1. stopPropagation or preventDefault or return false? 开发新手对stopPropagation,preventDefault和返回false经常混淆该使用哪一个技术以及什么时候用。 stopPropagation() 要了解stopPropagation,我们需要首先了解事件冒泡。让我们来举个例子。让我们假设你有链接a在div里,如下所示: div id="divone" a href="#" id... |
2015-1-22 4:31:58 |
3
|
浏览器缓存机制
浏览器缓存机制,其实主要就是HTTP协议定义的缓存机制(如: Expires; Cache-control等)。但是也有非HTTP协议定义的缓存机制,如使用HTML Meta 标签,Web开发者可以在HTML页面的head节点中加入meta标签,代码如下: html code META HTTP-EQUI... |
2015-1-19 18:51:00 |
4
|
Anychart图表系列五之事件监听 - 上善若水任方圆 - ITeye技术网站
创建图表事件监听非常简单:首先是通过addEventListener('监听类型',js监听方法)添加事件监听,然后在js监听方法中定义具体监听逻辑。 以钻取操作为例,当用户点击图表某一个point的时候弹出point的name和value,代码如下: Js代码 script //创建AnyChart varchart=newAnyChart(); //添加钻取操作"pointClick"事件监听 chart.addEventListen... |
2014-12-11 2:06:00 |
5
|
通过浏览器直接打开iOS/Android App 应用程序 - Cundong's log - 开源中国社区
点击浏览器中的URL链接,启动特定的App。 首先做成HTML的页面,页面内容格式如下: a href="[scheme]://[host]/[path]?[query]"启动应用程序/a 这一句就可以了。 各个项目含义如下所示: scheme:判别启动的App。 ※详细后述 host:适当记述 path:传值时必须的key ※没有也可以 query:获取值的Key和Value ※没有也可以 作为测试好好写了一下,如下: a href="myapp://jp.... |
2014-11-7 17:46:00 |
6
|
arcgis api for flex 开发入门(一)环境搭建 - 温景良(Jason) - 博客园
arcgis api for flex 是arcgis 今年四月新推出来的进行RIA开发的flex库,是arcgis server9.3的一部分,使用ArcGIS API for Flex可以基于ArcGIS Server建立漂亮的富互联网应用程序 rich internet applications (RIAs) ,优点是运行速度快,用户体验效果会比目前的WEBGIS好。 使用arcgis api for flex 可以达到下面的效果 1,显示你的地图数据并可以和数据交互 2,在服务器上执行空间处理模型... |
2014-10-14 19:07:00 |
7
|
5个经典的前端面试问题 - OurJS
JavaScript开发人员在IT界的需求量一直很大。如果你非常精通神这门语言,你会有很多机会换工作,涨薪水。但是在一家公司录用你之前,你必须顺利通过面试,证明你的技能。在本文中,我将向您展示5个关于前端相关的问题,以测试侯选者的JavaScript技能和他们解决问题的能力。有将会非常有趣! 问题1:Scope作用范围 考虑下面的代码: (function() { var a = b = 5;})();console.log(b); 什么会被打印在控制台上? 回答 上面的代码会打印 5。 这... |
2014-9-26 18:11:00 |
8
|
CSS布局 ——从display,position, float属性谈起 - dolphinX - 博客园
块级元素与行内元素 首先谈谈人们经常提及的块级元素和行内(内联)元素 p, ul, form, div等元素被称为块级元素,这些元素显示为一块儿内容(会自动换行),span, input 等元素称为行内元素,这两者主要区别就是块级元素会从上到下一个个垂直排列,每个自占一行,如下即使两个div之间没任何元素,绿色的div仍然会显示在hongsediv下方,而不是右方 div style="height: 100px; width: 100px; background-color: Red;&... |
2014-9-24 22:15:00 |
9
|
oryx-editor - Web-based Graphical Business Process Editor. - Google Project Hosting
Oryx is a web-based editor for modeling business processes in various modeling languages like BPMN or EPC. You can create models and share them with your business partners, clients and friends. You may not only share a model with your colleagues, but disc... |
2014-7-30 1:29:00 |
10
|
Atmosphere/atmosphere · GitHub
Realtime Client Server Framework for the JVM, supporting WebSockets and Cross-Browser Fallbacks Support http://async-io.org/ The Atmosphere Framework contains client and server side components for building Asynchronous Web Applications. The majority ... |
2014-7-30 1:26:00 |
11
|
HTML table Export
HTML 表格导出 jQuery 插件可以帮助用户导出 HTML 表格到 JSON、XML、PNG、CSV、TXT、SQL、MS-Word、MS-Excel、MS-PowerPoint 和 PDF 格式。您可以轻松地设置字体大小,分隔符,导出类型等。 Installation jquery Plugin script type="text/javascript" src="tableExport.js" script type="text/javascr... |
2014-7-23 17:16:00 |
12
|
Chart.js Documentation
Chart interactivity If you are looking to add interaction as a layer to charts, Chart.js isnot the library for you. A better option would be using SVG, as this will let you attach event listeners to any of the elements in the chart, as these are all DOM n... |
2014-6-16 22:58:00 |
13
|
iframe框架取值兼容ie/firefox/chrome的写法 - 菩提树下的杨过 - 博客园
iframename="frame1"id="frame1"src="frm.html"frameborder="1"height="30"/iframe p iframe1中文本框的值:/p p inputtype="button"name="Submit"value="getValue"onclick="getValue()"... |
2014-6-12 18:11:00 |
14
|
ie6、ie7下JSON.parse JSON未定义的解决方法 - Jason的专栏 - 博客频道 - CSDN.NET
解决方法一: [javascript]view plaincopyprint? varjsons=req.responseText; vars; if(typeof(JSON)=='undefined'){ s=eval("("+jsons+")"); }else{ s=JSON.parse(jsons); } 解决方法二: 调用的页面里引用json2.js即可解决问题(推荐方法二)。 即:sc... |
2014-5-27 2:04:00 |
15
|
js window.onload 加载多个函数和追加函数 - 唔愛吃蘋果 - 博客园
window.onload 不能同时加载多个函数,后面会把前面的覆盖,解决办法: functionaddLoadEvent(func){ varoldonload=window.onload;//得到上一个onload事件的函数 if(typeofwindow.onload!='function'){//判断类型是否为'function',注意typeof返回的是字符串 window.onload=func; }else{ window.onload=function(){ oldonload();//... |
2014-4-9 19:20:00 |
16
|
原生Js封装的动画类 - dtdxrk - 博客园
算法用的是Tween类,需要研究的参考这篇文章: http://www.cnblogs.com/cloudgamer/archive/2009/01/06/Tween.html 网页里常用的动画 放大缩小 位置移动 透明度改变 效果预览:http://jsfiddle.net/dtdxrk/WnACG/embedded/result/ |
2014-3-28 23:09:00 |
17
|
HtmlUnit - Welcome to HtmlUnit
Features Support for the HTTP and HTTPS protocols Support for cookies Ability to specify whether failing responses from the server should throw exceptions or should be returned as pages of the appropriate type (based on content type) Sup... |
2014-1-3 10:41:00 |
18
|
JavaScript性能优化的30个技巧
Tip #1 – Evaluate Local Variables (http://blogs.msdn.com/b/ie/archive/2006/08/28/728654.aspx) Primarily, specific to IE, because local variables are found based on the most to the least specific scope and can pass through multiple levels of scope, ... |
2013-10-22 17:01:00 |
19
|
使用 ant 简洁构建前端 - { focus : web } - ITeye技术网站
注意两个可修改编码或字符集的地方: 压缩 对应于编译型语言构建的编译阶段,压缩优化源码,推荐 css采用yuicompressor,JavaScript采用 googleclosure-compiler。ant 可以通过java任务来方便地调用外部 java 程序,并且在同一 jvm 内运行也避免了通过exec执行外部程序的效率问题。不过由于压缩器每次只能针对单个源文件进行操作,这时就需要使用 ant 的 批处理任务(bulk task):apply Xml代码 applyexec... |
2013-9-30 8:49:00 |
20
|
也说TOMCAT中文乱码问题 request的setCharacterEncoding必须在getParameter之前执行_深圳漂者_百度空间
setCharacterEncoding public void setCharacterEncoding(java.lang.String env) throws java.io.UnsupportedEncodingException Overrides the name of the character encoding used in the body of this request. This method must be called prior to reading request para... |
2013-8-13 16:15:00 |