我动态上传我的照片。 我的代码也应该运行IE9,在下面的代码中,我只关注IE9:
<!doctype html>
<html>
<head>
<!-- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> -->
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:700' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<title>Image preview example</title>
<script type="text/javascript">
var loadImageFile = (function () {
if (navigator.appName === "Microsoft Internet Explorer") {
return function () {
$("#id_image").width(300);
$("#id_image").height(300);
$("#id_image").css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image)");
document.getElementById("id_image").filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = document.getElementById("imageInput").value;
$("#id_image").width(320); // ****** Problematic line
$('#id_image").height(350); // ****** Problematic line
}
}
})();
</script>
<style type="text/css">
</style>
</head>
<body>
<form name="uploadForm">
<p><input id="imageInput" type="file" name="myPhoto" onchange="loadImageFile();" /><br />
</form>
<img id="id_image" src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D" onmousedown="return false" alt="Your picture"/>
</body>
</html>
为什么我必须在行之前声明宽度+高度: document.getElementById(“id_image”)。filters.item(“DXImageTransform.Microsoft.AlphaImageLoader”)。src = document.getElementById(“imageInput”)。value?
我不能放行(标记在星号: ** 有问题的行),因为它不会改变宽度+高度。
如何更改宽度+高度呢?
谢谢:)
答案 0 :(得分:0)
更改图像尺寸直到屏幕发生变化时会有延迟。
您可以将此问题视为已关闭。