node.setAttribute 导致 INVALID_CHARACTER_ERR

发布于 2024-11-04 01:53:35 字数 724 浏览 0 评论 0原文

我在函数中有以下代码:

  this.HtmlRef = document.createElement( "canvas" );

  if (!this.HtmlRef)
  {
    return false;
  }

  this.HtmlRef.appendChild(  document.createTextNode( "Your browser doesn't support dynamic graphic drawings (Canvas)!" )  );

  var Width = document.createAttribute( "width" );
  var Height = document.createAttribute( "height" );
  Width.nodeValue = 0;
  Height.nodeValue = 0;

  this.HtmlRef.setAttribute(Width);  /* error */
  this.HtmlRef.setAttribute(Height); /* error */

我也尝试更改宽度和高度的名称,但没有成功! 整个错误信息:

未捕获的错误:INVALID_CHARACTER_ERR:DOM 异常 5

谢谢。

解决方案是使用 setAttributeNode 而不是 setAttribute

I have the following code in a function:

  this.HtmlRef = document.createElement( "canvas" );

  if (!this.HtmlRef)
  {
    return false;
  }

  this.HtmlRef.appendChild(  document.createTextNode( "Your browser doesn't support dynamic graphic drawings (Canvas)!" )  );

  var Width = document.createAttribute( "width" );
  var Height = document.createAttribute( "height" );
  Width.nodeValue = 0;
  Height.nodeValue = 0;

  this.HtmlRef.setAttribute(Width);  /* error */
  this.HtmlRef.setAttribute(Height); /* error */

I have also tried to change the names of Width and Height but no success!
The whole error message:

Uncaught Error: INVALID_CHARACTER_ERR: DOM Exception 5

Thanks.

The Solution is to use setAttributeNode instead of setAttribute

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2024-11-11 01:53:35

使用 setAttributeNode() 而不是 setAttribute()

use setAttributeNode() instead of setAttribute()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文