第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

JS 錯誤:元素未附加到文檔

JS 錯誤:元素未附加到文檔

青春有我 2023-07-14 15:04:23
我嘗試使用html2canvas?lib將 div 轉(zhuǎn)換為圖像,但我不斷收到該錯誤html2canvas.min.js:20 Uncaught (in promise) Error: Element is not attached to a Documentat html2canvas.min.js:20at html2canvas.min.js:20at Object.next (html2canvas.min.js:20)at html2canvas.min.js:20at new Promise (<anonymous>)at a (html2canvas.min.js:20)at Vs (html2canvas.min.js:20)at html2canvas.min.js:20at HTMLInputElement.<anonymous> (index4.html:18)at HTMLInputElement.dispatch (jquery-2.2.4.min.js:3)我不明白我的代碼有什么問題,當我在 jsfiddle 上運行代碼時,它不會給我任何錯誤,當我在本地系統(tǒng)上運行它時,它會給我錯誤。代碼<html><head><script src="https://code.jquery.com/jquery-2.2.4.min.js" ></script><script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>?</head><body><div id="phone">45454565756677</div>? ??<div id="out_image"></div>? ???<input type="button" value="Data to Image" id="data_to_image_btn" >??????<script>? ??? ? $(function() {?? ? $("#data_to_image_btn").click(function() {?? ? ? ? html2canvas($("#phone"), {? // no error with : document.getElementById( but nothing is rendered? ? ? ? ? ? onrendered: function(canvas) {? ? ? ? ? ? ? ? console.log('done ... ');? ? ? ? ? ? ? ? $("#out_image").append(canvas);? ? ? ? ? ? }? ? ? ? });? ? });});?</script>??</body></html>
查看完整描述

1 回答

?
12345678_0001

TA貢獻1802條經(jīng)驗 獲得超5個贊

嘗試這個:


html2canvas($("#phone")[0]).then((canvas) => {

    console.log("done ... ");

    $("#out_image").append(canvas);

});

這兩個更改是:將 jquery 選擇的第一個元素傳遞給 html2canvas,而不是選擇本身。這消除了錯誤......但要發(fā)生某些事情,似乎您需要將調(diào)用視為 Promise,而不是傳遞回調(diào)onrendered(這是第二個更改)


查看完整回答
反對 回復 2023-07-14
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號