博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2013年2月26日星期二本地图片预览
阅读量:6272 次
发布时间:2019-06-22

本文共 714 字,大约阅读时间需要 2 分钟。

今天基本上把delphi代码写完,开始看部分java代码,发现自己的问题还比较多,本地图片预览的问题本很简单,但没想到平台上一致有问题,并且还是用控件什么的很复杂的方法,百度一下很简单的方法就能实现,摘录部分代码如下:

<form name="form5" id="form5" method="post" action="#">

<input type="file" name="file5" id="file5"

οnchange="preview5()"/>

</form>

<script type="text/javascript">

function preview5(){

var x = document.getElementById("file5");

if(!x || !x.value) return;

var patn = /\.jpg$|\.jpeg$|\.gif$|\.png$/;

if(patn.test(x.value)){

var img=document.createElement('img');

img.setAttribute('src','file://localhost/'+x.value);

img.setAttribute('width','120');

img.setAttribute('height','90');

img.setAttribute('id','img5');

document.getElementById('form5').appendChild(img);

}else{

alert("您选择的似乎不是图像文件。");

}

}

</script>

转载地址:http://goopa.baihongyu.com/

你可能感兴趣的文章
Unity中HDR外发光的使用
查看>>
Flume负载均衡配置
查看>>
Ajax详解
查看>>
Ubuntu C/C++开发环境的安装和配置
查看>>
百世汇通快递地区选择插件,单独剥离
查看>>
Linux系统调用---同步IO: sync、fsync与fdatasync【转】
查看>>
【MyBatis学习06】输入映射和输出映射
查看>>
[LeetCode] Decode String 解码字符串
查看>>
数字逻辑的一些基本运算和概念
查看>>
ant重新编译打包hadoop-core-1.2.1.jar时遇到的错
查看>>
【★★★★★】提高PHP代码质量的36个技巧
查看>>
3 weekend110的配置hadoop(格式化) + 一些问题解决 + 未免密码配置
查看>>
JavaScript Creating 对象
查看>>
Java compiler level does not match the version of the installed Java project facet.(转)
查看>>
WPF MediaElement.Position属性
查看>>
sqoop数据迁移(基于Hadoop和关系数据库服务器之间传送数据)
查看>>
spring mysql多数据源配置
查看>>
[React] Override webpack config for create-react-app without ejection
查看>>
检索 COM 类工厂中 CLSID 为{00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80070005。...
查看>>
测试java的父子类化
查看>>