- 浏览: 109765 次
- 性别:
- 来自: 西安
最新评论
-
wgyyouge:
有个命令行下的高效迁移工具ora2mysqlhttp://ww ...
kettle解决方案设计 -
空白的泡:
博主 在吗, 你这个方式。。我前面按照弄好了。 可是启动 to ...
java发送https请求证书问题
文章列表
div#up {
width: 0px;
height: 0px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid#2f2f2f;
}
div#down {
width: 0px;
height: 0px;
border-left: 20px solid transparent;
border-right: 20px solidtransparent;
border-top: 20px solid #f00;
}
div#left {
width: ...
iframe自适应子页面内容高度
- 博客分类:
- Web前端
1、页面引入iframe.js;
2、//设置初始化iframe高度,调用方法: startInit('orderiframe', 200);
禁止浏览器右键菜单弹出
- 博客分类:
- Web前端
<script type="text/javascript">
function clickIE4()
{
if (event.button==2)
{
return false;
}
}
function clickNS4(e)
{
if (document.layers||document.getElementById&&!document.all)
{
if (e.which==2||e.which==3)
...
将字符串以UTF8进行转码
- 博客分类:
- Web前端
function toUtf8(str)
{
var out, i, len, c;
out = "";
len = str.length;
for(i = 0; i < len; i++)
{
c = str.charCodeAt(i);
if ((c >= 0x0001) && (c <= 0x007F))
{
out += str.charAt ...
/rep : 资源库名称
/user : 资源库用户名
/pass : 资源库密码
/trans : 要启动的转换名称
/dir : 目录(不要忘了前缀 /)
/file : 要启动的文件名( ...
<script type="text/javascript">
window.onbeforeunload=function window.onbeforeunload(){
if (document.body.clientWidth-event.clientX<21||event.altKey||event.ctrlKey){
alert("close");
}else{
window.event.returnValue=" ...
配证书:
Getting Tomcat SSL (https) Working
1.Create a certificate keystore containing a single self-signed certificate by executing the following command. Specify a password value of "changeit ". Note that this command creates both ...