JS]「オブジェクトは削除属性またはメソッドをサポートしていません.」解決策

4051 ワード


今回の告示は前編の内容に関する物語です.
📍 オブジェクトはremoveプロパティまたはメソッドをサポートしていません.
Jクエリー関数を書きましたが、コンソールウィンドウにエラーが発生しました.
重要なのはchromeとfirefoxが間違っていないことです.
IEのみ!!!エラー😑
Chrome,Firefox
$("#id1").ready(function() {
if($("#id2").length == 0) {
        document.getElementsByClassName('dt-buttons')[0].children[1].remove()
    }
})
上の関数を次のように変更すると、エラーはなくなります.
IE、Chrome、Firefox
$("#id1").ready(function () {
    if ($("#id2").length == 0) {
        let reMov = document.getElementsByClassName('dt-buttons')[0].children[1];
        reMov.parentNode.removeChild(reMov);
    }
})