<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>在页面上预览本地图片</title>

<script type="text/javascript">

function Preview(my) {

document.getElementById("pic").filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = my.value;

}

</script>

</head>

<body>

<input type="file" οnchange="Preview(this);" />

<div id="pic" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);width:100px;height:100px;"></div>

</body>

</html>

<br><br><hr>