2016-11-20 33 views
0

我正在使用jquery-word-export插件(由Marks Windoll開發)將我的網頁導出到.doc文檔。一切工作正常在谷歌瀏覽器,但不是在Mozilla Firefox。當我點擊導出按鈕時,出現以下錯誤:jQuery word導出錯誤

SyntaxError: export declarations may only appear at top level of a module

NS_ERROR_NOT_AVAILABLE

奇怪的是,它有時會刷新網頁。

這是什麼意思,我該如何解決這個問題?是否有其他解決方案(使用也許是另一種導出庫)

編輯:我的代碼如下:

<div id="export-content"> 
<!-- PROFILE PICTURE --> 
<div id="divProfielfoto" ng-controller="profielfotoCtrl"> 
    <img id="profielfoto" ng-src="{{profielfoto}}" alt="profielfoto" style="width: 125px;height:125px;margin-bottom: 20px; border-radius:50%; border: 7px solid orange;" /></div> 
<input style="display: none;" id="profileUpload" type="file" accept="image/*"/> 
<!-- PROFILE PICTURE END --> 
</div> 
<button class="word-export" onclick="export()">Export as .doc</button> 

和導出代碼如下:

$(".word-export").click(function (event) { 
    $("#export-content").wordExport("CV " + naam); 
}); 
+1

分享您的代碼 – brk

+0

份額的jsfiddleØplunr這是對鉻,而不是Firefox的迴環連接。您可以在刪除onclick屬性後嘗試使用 –

+0

。 – reza

回答

0

我已經找到了回答。在開始時,個人資料照片的路徑是什麼都沒有。您上傳資料圖片(和路徑指向有效圖片)之後,一切工作