我正在创建一个Facebook应用程序,并希望使用jquery form plugin实现类似ajax的图片上传。在chrome / ff中一切正常,但在iexplorer中我得到以下错误:

Message: Access Denied
Line: 349
Char: 5
Code: 0
URI: http://application.my_domain.gr/apps/new_app/js/jquery.form.js


我知道跨域问题,但无法理解为什么会这样,因为我当前使用的所有脚本都在同一个域中。
这是我在Firefox / Chrome中完成工作的方式:

<html>
<head>
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/jquery.form.js"></script>
</head>
<body>

<form id="imageform" method="post" enctype="multipart/form-data" action='ajaximage.php'>
        <input type="file" name="photoimg" id="photoimg" />
</form>
<div id='preview'>
</div>

<script>
$('#photoimg').bind('change', function() {
                    $("#preview").html('');
                    $("#preview").html('<img src="img/loader.gif" alt="Upload in progress"/>');
                    $("#imageform").ajaxForm({
                                        target: '#preview',
                                        success:    function() {
                                                $("#preview img").attr("id", "uploaded_img");
                                        }
                    }).submit();


            });
</script>
</body>
</html>


任何想法为什么会这样?
提前致谢。

最佳答案

好,距离我发布问题已经有一段时间了,但这终于对我有用:

我刚刚在应用程序的“基本设置”(“基本信息”部分)中将我的域添加到“应用程序域”中,一切正常!

07-28 03:17