我在函数中有以下代码:
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
答案 0 :(得分:2)
使用setAttributeNode()而不是setAttribute()