经典JS
时间:2007-01-19 15:10:40浏览:79040
// 我先来,定义一个函数,用来读取特定的cookie值。
function getCookie(cookie_name)
{
var allcookies = document.cookie;
var cookie_pos = allcookies.indexOf(cookie_name);
// 如果找到了索引,就代表cookie存在,
// 反之,就说明不存在。
if (cookie_pos != -1)
{
// 把cookie_pos放在值的开始,只要给值加1即可。
cookie_pos += cookie_name.length + 1;
var cookie_end = allcookies.indexOf(";", cookie_pos);
if (cookie_end == -1)
{
cookie_end = allcookies.length;
}
var value = unescape(allcookies.substring(cookie_pos, cookie_end));
}
return value;
}
// 调用函数
var cookie_val = getCookie("username");
//javascript等比例缩放调整图片大小
function setImagesSize(id,iWidth) {
var aImg = document.getElementById(id).getElementsByTagName("img");
for (var i=0; i<aImg.length; i++) {
DoResizeImage(aImg,iWidth);
}
}
function DoResizeImage(objImage,maxWidth) {
if(maxWidth>0){
if(objImage.width>maxWidth){
objImage.width=maxWidth;
objImage.height = maxWidth * objImage.height / objImage.width;
objImage.title += "点击查看大图";
objImage.attachEvent('onclick', function(){window.open(objImage.src);});
objImage.attachEvent('onmouseover', function(){objImage.style.cursor='hand';});
}
}
}
//客户端上传图片大小
var FileMaxSize = 50;//限制上传的文件大小,单位(k)
function chkform(){
if (document.HwForm.Photo.value==""){alert("请选择照片");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value<=0){alert("请重新选择照片");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value>FileMaxSize*1024){alert("选择的照片超过"+FileMaxSize+"K,请重新选择");document.HwForm.Photo.focus();return false;}
alert("可以提交,当前为测试...");return false;
}
上一篇:把自己的代步车车发上来
下一篇:ASP+DLL实现ping功能的
function getCookie(cookie_name)
{
var allcookies = document.cookie;
var cookie_pos = allcookies.indexOf(cookie_name);
// 如果找到了索引,就代表cookie存在,
// 反之,就说明不存在。
if (cookie_pos != -1)
{
// 把cookie_pos放在值的开始,只要给值加1即可。
cookie_pos += cookie_name.length + 1;
var cookie_end = allcookies.indexOf(";", cookie_pos);
if (cookie_end == -1)
{
cookie_end = allcookies.length;
}
var value = unescape(allcookies.substring(cookie_pos, cookie_end));
}
return value;
}
// 调用函数
var cookie_val = getCookie("username");
//javascript等比例缩放调整图片大小
function setImagesSize(id,iWidth) {
var aImg = document.getElementById(id).getElementsByTagName("img");
for (var i=0; i<aImg.length; i++) {
DoResizeImage(aImg,iWidth);
}
}
function DoResizeImage(objImage,maxWidth) {
if(maxWidth>0){
if(objImage.width>maxWidth){
objImage.width=maxWidth;
objImage.height = maxWidth * objImage.height / objImage.width;
objImage.title += "点击查看大图";
objImage.attachEvent('onclick', function(){window.open(objImage.src);});
objImage.attachEvent('onmouseover', function(){objImage.style.cursor='hand';});
}
}
}
//客户端上传图片大小
var FileMaxSize = 50;//限制上传的文件大小,单位(k)
function chkform(){
if (document.HwForm.Photo.value==""){alert("请选择照片");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value<=0){alert("请重新选择照片");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value>FileMaxSize*1024){alert("选择的照片超过"+FileMaxSize+"K,请重新选择");document.HwForm.Photo.focus();return false;}
alert("可以提交,当前为测试...");return false;
}
上一篇:把自己的代步车车发上来
下一篇:ASP+DLL实现ping功能的
- Linux文章
- PHP文章
- 随机文章
- Linux中的find(-atime...
- mysql的expire_logs_...
- PHP 扩展 libsodium s...
- Linux下利用find和cp实现筛...
- 使用mysqldump命令导出备份m...
- Linux系统如何设置开机自动运行脚...
- Linux上实现秒级执行的定时任务
- shell echo -e 颜色输出
- Linux下通过grep查找指定的进...
- 解决执行脚本报syntax erro...
发表评论
昵称: 验证码: