我对我使用的功能感到困惑。我正在尝试显示在页面首次加载时弹出的警报消息,并尝试使用 Window.navigator 对象向用户显示他们当前正在使用的浏览器,我仍然需要一些东西,但什么都没有出现从我输入的代码。一些指针?或者也许是我应该做什么的解决方案?
继承人的js:
function myFunction_3() {
var newel = document.createElement("Skills");
var text = document.createTextNode("Proficient with");
txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
document.getElementById("flow").innerHTML=txt;
newel.appendChild(text);
document.getElementById("list").appendChild(newel);
newel.appendChild("rightcol")
alert("Page is loaded");
}