当下载的文件名字中不含有汉字,或者下载的文件不需要考虑用户的权限问题时。直接让超链接的href属性为所要下载的文件名即可。否则最好使用struts2的文件下载机制。 以下载图片为例 完整的代码: action: import java.io.File;
import java.io.InputStr...
分类:
其他好文 时间:
2014-11-29 11:38:33
阅读次数:
222
function getQueryString(queryKey) { var obj = null; if (location.href.indexOf("?") > 0) { obj = {}; var hash = location.hash; var search = location...
分类:
其他好文 时间:
2014-11-28 17:58:46
阅读次数:
107
window.location.reload;在项目中,提交数据的动作,出现讨厌的对话框(。。。。。。)!解决办法,代码如下:1 //刷新当前窗口2 window.location.href=window.location.href; 3 window.location.reload; 这样,就不会...
分类:
Web程序 时间:
2014-11-27 18:05:10
阅读次数:
142
1. QueryString 这是最简单的传值方式,但缺点是传的值会显示在浏览器的地址栏中且不能传递对象,只适用于传递简单的且安全性要求不高的数值。 传递: location.href="WebForm2.aspx?name=" + yourName&&name2="+ yourName2; ...
分类:
Web程序 时间:
2014-11-27 10:24:49
阅读次数:
181
抓取和分析网页的类。主要功能有: Ontology 1、提取网页的纯文本,去所有html标签和javascript代码2、提取网页的链接,包括href和frame及iframe3、提取网页的title等(其它的标签可依此类推,正则是一样的)4、可以实现简单的表单提交及cookie保存/** ...
当前页面直接跳转:JavaScript代码<selectname="qq"onchange="javascript:location.href=this.value;"><optionvalue="http://www.bhcode.net"selected="selected">BHCODE</option><optionvalue="http://sucai.bhcode.net">素材网</option><opt..
分类:
其他好文 时间:
2014-11-25 18:57:47
阅读次数:
219
直接上代码<<!DOCTYPEHTML>
<html>
<head>
<linkhref="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css"rel="stylesheet">
<linkrel="stylesheet"type="text/css"media="screen"
href="http://tarruda...
分类:
Web程序 时间:
2014-11-25 18:56:54
阅读次数:
305
先上html代码<!DOCTYPEHTML>
<html>
<head>
<linkhref="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css"rel="stylesheet">
<linkrel="stylesheet"type="text/css"media="screen"
href="http://tarruda.gi..
分类:
Web程序 时间:
2014-11-25 18:52:43
阅读次数:
202
例如:页面上有【忘记密码】?会跳转到另一个链接地址??怎么把这个地址取出来 解决方案:点击它之后 getcurrentUrl 如果遇到不需要点击获取URL使用getAttribute("href") 高端自动化测试交流群:310924886...
分类:
Web程序 时间:
2014-11-25 16:40:12
阅读次数:
233
具体代码实现:<!DOCTYPEhtml>
<html>
<head>
<title></title>
<metacharset="utf-8"/>
<metaname="viewport"content="width=device-width,initial-scale=1.0">
<linkrel="stylesheet"type="text/css"href="bootstrap/css/bootst..
分类:
其他好文 时间:
2014-11-24 01:15:29
阅读次数:
454