JavaScript - 文件上传无法在我的网站上运行

时间:2014-09-29 00:36:52

标签: javascript

我在here

上的JSFiddle示例中使用了确切的代码

在JSFiddle上正常工作但不能在我的托管网站上运行,完全复制它。是否有我缺少的jQuery包含类型? 我使用了firebug,它没有显示任何错误。

我的代码是

<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$("input[type='image']").click(function() {
    $("input[id='my_file']").click();
});
</script>
</head>
<body>
    <input type="image" src="/images/camera.png" width="30px"/>
    <input type="file" id="my_file" style="display: none;" />
</body>

0 个答案:

没有答案