我是javaScript的新手,我在互联网上找到了这个用于预览图像的java脚本。 我无法将图像的java变量发送到php文件。我已经尝试使用html框但无法将变量导入php。我也尝试过使用reader.onload,新的FileReader,#blah,blar等作为html字段中的变量,但这些变量似乎都没有作为变量(也没有使用echo语句尝试过)。任何关于此的指示都将受到赞赏。
<html>
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jquerzyui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
<script type="text/javascript">
function readURL(input)
{
if (input.files && input.files[0])
{
var reader = new FileReader();
reader.onload = function (e)
{
$('#blah')
.attr('src',e.target.result)
.width(150)
.height(200);
};
reader.readAsDataURL(input.files[0]);
}
}
</script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://goo.gl/r57ze"></script>
<![endif]-->
</head>
<body>
<input type='file' onChange="readURL(this);" />
<img id="blah" src="#" alt="Image Name" width="10" height="10" />
</body>
</html>
this is the submit box
<form action="file.php" method="post" >
<input type="hidden" id="name" value="<?php echo reader ?>" />
<input type="submit" name="Submit" value="Submit">