我使用JAVASCRIPT动态创建HTML中的元素居然提示,
“意外地调用了方法或属性访问”
我的方法:
function appendTag(element)
{
var f = document.createElement("font");
f.setAttribute("style","color:red");
var text = document.createTextNode("*");
f.appendChild(text);
element.appendChild(f);
}
转载于:https://www.cnblogs.com/kaixin110/archive/2008/01/28/1055547.html