为了账号安全,请及时绑定邮箱和手机立即绑定

这个javaScript页面怎么不显示内容也不提示错误?

这个javaScript页面怎么不显示内容也不提示错误?

蛊毒传说 2018-12-26 14:09:42
<html xmlns="http://www.w3.org/1999/xhtml"><head>    <title>无标题页</title>    <script type="text/javascript">    function createA(url,text)    {       var o=document.body;       if(o)       {           var a=document.createElement("a");           a.setAttribute("href",url);           a.setAttribute("text",text);           a.style.color="red";           o.appendChild(a);       }       else       {          window.alert("0对象为空");       }    }        </script> </head><body onload="createA('http://www.sdut.edu.cn','山东理工大学')"><div id="main"></div></body></html>
查看完整描述

2 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

var a=document.createElement("a");
a.href = url;
a.innerHTML = text; //这儿用innerHTML而不是innerText因为有浏览器不支持innerText
a.style.color = 'red';
o.appendChild(a);

你写的代码都是可以执行的,只是没有设对属性.


查看完整回答
反对 回复 2018-12-30
?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

把那段脚本放在</html>上面试试,我觉得应该是你的js执行的有些早了

查看完整回答
反对 回复 2018-12-30
  • 2 回答
  • 0 关注
  • 234 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信