3
私がアップロードし、AJAXを通じてフォームを送信しようとしていますし、私はjQuery.formプラグインhttp://jquery.malsup.com/form/を見つけているjQueryの:は、ここに私のコードフォームプラグイン
$("#submitSlide").click(function(){
var options = {
success: function(data) {
console.log(data);
},
error : function(jqXHR , textStatus , errorThrown){
console.log(' broked ' , jqXHR , textStatus , errorThrown);
} ,
dataType: 'html',
type: 'POST',
url: 'http://www.slideshare.net/api/1/upload_slideshow'
};
$('#ssuploadform').ajaxSubmit(options);
return false;
});
しかし、私はこのようなエラーになっています:
を>>[jquery.form] Server abort: Error: Permission denied to access property 'document' (Error)
>>[jquery.form] cannot access response document: Error: Permission denied to access property 'document'
>>[jquery.form] aborting upload... aborted
これを修正する方法はありますか?
ありがとう、何か助けていただきありがとうございます!