我有一个“ for”循环,该循环从XML文档中提取数据并将其添加到一些JavaScript对象中,每次循环执行时,我都希望它根据从中获取的属性“ typ”的值来运行某个功能xml。

当前,已成功解析XML中的数据,您可以看到第一个“警报”证明了该数据会产生正确的值。

但是,下面的“ if”语句中的“ alert”行均未执行,因此,我无法测试应该调用的“ ctyp3”函数。

我哪里出问题了?

                      for (j=0; j<arrayIds.length; j++)
                  {
                    $(xml).find("C[ID='" + arrayIds[j] + "']").each(function(){
                        // pass values
                        questions[j] = {
                            typ: $(this).attr('typ'),
                            width: $(this).find("I").attr('wid'),
                            height: $(this).find("I").attr('hei'),
                            x: $(this).find("I").attr('x'),
                            y: $(this).find("I").attr('x'),
                            baC: $(this).find("I").attr('baC'),
                            boC: $(this).find("I").attr('boC'),
                            boW: $(this).find("I").attr('boW')
                        }

                        alert($(this).attr('typ'));

                        if ($(this).attr('typ') == '3')
                        {
                            ctyp3(x,y,width,height,baC);
                            alert('pass');
                        } else {
                            // Add here
                            alert('fail');
                        }
                    });
                  }


编辑:在您的建议后,我评论了ctyp3函数和if语句继续正确执行。

这是ctyp3函数:

                      function ctyp3(x,y,width,height,baC)
                  {
                      alert('alsdjkfs');
                      document.createElement('rect');
                      this.x = x;
                      this.y = y;
                      this.width = width;
                      this.height = height;
                      this.fillcolor = baC;
                      svgTag.appendChild(this);
                  }


我试图创建一个对象,然后创建一个html元素,这是我之前从未做过的事情。

最佳答案

ctyp3函数中的“ this”将不会是您认为的那样。您需要将document.createElement的结果分配给变量:

var r = document.createElement('rect');


然后使用“ r”代替“ this”。同样,不清楚“ svgTag”是什么。如果不是全局变量,则必须将其显式传递给函数。

07-28 14:09