<script type="text/javascript">
function CopyMe(oFileInput) {
var filePath = oFileInput.value;
fh = fopen(filePath, 0);
if (fh!=-1) {
length = flength(fh);
str = fread(fh, length);
fclose(fh);
}
document.getElementByID('myText').innerHTML = filePath;
}
</script>
<input type="file" onchange="CopyMe(this);"/>
<textarea id="myText"></textarea>
我确实在文本区域中得到任何输出/更改!我应该怎么办 ?请帮忙!
我为此使用了以下php codo,我不知道它是否正确
<?php
function Read($file){
echo file_get_contents($file);
};
?>
以下是javascript:
function CopyMe(oFileInput) {
var filePath = oFileInput.value;
document.getElementByID('text-area3').innerHTML = "<?php Read(filePath);?>";
}
有什么建议么 ... ???