[原创]php+ajax实现模拟Win文件管理系统七_PHP教程

WBOY
Release: 2016-07-13 11:00:05
Original
907 people have browsed it

[原创]php+ajax实现模拟Win文件管理系统

//

本教程由本站原创,转载请注明来处

作者:www.drise.cn

邮箱:drise@163.com

QQ:271728967

//

最后一个文件就是js.js文件了.

var xmlhttp=false;
function aa(obj)
{
obj.className='aa';
obj.onblur=function(){obj.className='bb';}
}
function resizepic(thispic) {
//$('imgbox').style.width = $('divbox').clientWidth;
if(thispic.height>55||thispic.width>55)thispic.style.zoom=56/(thispic.height>thispic.width?thispic.height:thispic.width);

}

function resizeimg(thispic){

if(thispic.height>100||thispic.width>100)thispic.style.zoom=180/(thispic.height>thispic.width?thispic.height:thispic.width);
}

上面这些是对图片进行缩放的.不过在fox也像有一点问题.

function Losefocus(obj,path){ //这里是创建文件时判断文件合法性,然后发带参数发送给rename.php文件,

var ivalue=obj.value;

if( 'New folder' == ivalue || !ivalue.match(/^\w{1,255}$/i)){

alert('输入合法文件夹名!');

obj.select();

return false;

}else{
CreateAjax();
var url="rename.php?path="+encodeURI(path.replace("/","\/"))+"&nname="+encodeURI(obj.value)+"&action=mkdir&rd="+Math.random();


Senddata('GET',url,ReturnValue,'mkdir');


document.getElementById('t1').innerHTML=ivalue;


window.location.reload();


}


}

下面还有今天就不写了,手都打痛了.明天接着来.

www.bkjia.com true http://www.bkjia.com/PHPjc/631850.html TechArticle [原创]php+ajax实现模拟Win文件管理系统 // 本教程由本站原创,转载请注明来处 作者:www.drise.cn 邮箱:drise@163.com QQ:271728967 // 最后一个文件就是...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!