1、选择建立Maven Project 选择File -> New -> Other,在New窗口中选择 Maven -> Maven Project;点击next2、选择项目路径Usedefault Workspace location默认工作空间3、选择项目类型在Artifact Id中选择ma...
分类:
Web程序 时间:
2014-11-04 18:51:05
阅读次数:
166
非模态刷新父页面:window.opener.location.reload();模态刷新父页面:window.dialogArguments.location.reload();先来看一个简单的例子:下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说...
分类:
编程语言 时间:
2014-11-04 14:27:10
阅读次数:
201
方法1:二:方法如下:function uaredirect(f){try{if(document.getElementById("bdmark")!=null){return}var b=false;if(arguments[1]){var e=window.location.host;var a...
分类:
移动开发 时间:
2014-11-04 14:26:45
阅读次数:
227
*MathfUnity Mathf 数学运算(C#)*Vector3.LerpThe second line usesVector3.Lerpto determine the zombie’s new location along the path between its current and t...
分类:
编程语言 时间:
2014-11-04 14:24:58
阅读次数:
341
1.document.write("");输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5....
分类:
编程语言 时间:
2014-11-04 12:39:45
阅读次数:
182
kohana nginx的配置
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?kohana_uri=/$1 last;
}
index index.php index.html...
分类:
其他好文 时间:
2014-11-03 17:43:26
阅读次数:
170
一、History对象 History 对象包含用户(在浏览器窗口中)访问过的 URL。 History 对象是 window 对象的一部分,可通过 window.history 属性对其进行访问。 注释:没有应用于 History 对象的公开标准,不过所有浏...
分类:
Web程序 时间:
2014-11-03 16:39:02
阅读次数:
185
function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if ....
分类:
Web程序 时间:
2014-11-03 12:50:49
阅读次数:
182
Please go with following transactionMI01>Create physical inventory document>Enter Document Date>Planned count date>Plant Code>Storage Location>Click o...
分类:
其他好文 时间:
2014-11-02 20:50:31
阅读次数:
235
1.Iframe不显示边框:frameborder=0
2.Iframe不显示横向滚动条:在iframe所指向的页面加入:
style>
html{overflow-x:hidden;}
style>
3.Iframe动态刷新:在父页面中:iframeId.window.location.replace(url);//会请求url
4.Iframe父页面调用子页面的方法:...