当前位置: 代码迷 >> JavaScript >> 错误:无法在“节点”上执行“ appendChild”:在JavaScript中使用微调器时参数1不是“节点”类型
  详细解决方案

错误:无法在“节点”上执行“ appendChild”:在JavaScript中使用微调器时参数1不是“节点”类型

热度:92   发布时间:2023-06-05 14:06:49.0

我在从引用的javascript代码中实现了微调器,但出现错误-

错误:无法在“节点”上执行“ appendChild”:参数1不是“节点”类型

码:

app.js

    render() {


    var opts = {
        lines: 13, // The number of lines to draw
        length: 38, // The length of each line
        width: 17, // The line thickness
        radius: 45, // The radius of the inner circle
        scale: 1, // Scales overall size of the spinner
        corners: 1, // Corner roundness (0..1)
        color: '#5229cc', // CSS color or array of colors
       //more
      };

       var target = document.getElementById('viz');
    //  var spinner = new Spinner(opts).spin(target);

        var spinner = new Spinner().spin();
        target.appendChild(spinner.el);


          //code
                },
                onCompleted: function () {
                    var target = document.getElementById('viz');
                    var spinner = new Spinner().stop();

                    target.appendChild(spinner.el);


                  session.close();
                 //code

        };

可能是您在onCompleted函数中遇到了错误。

我相信您应该删除target.appendChild(spinner.el); onCompleted函数中。

根据

要隐藏微调框,请调用stop()方法,该方法将从DOM中删除UI元素并停止动画。 停止的微调器可以通过再次调用spin()来重用。

  相关解决方案