问答详情
源自:9-16 创建元素节点createElement

为什么没有反应?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

</head>

<body>

<script type="text/javascript">

var main = document.body;

//创建链接

function createa(url,text)

{

   var a=createElement("a"); 

   a.href=url;

   a.innerHTML=text;

    main.appendChild("a");

    

}

// 调用函数创建链接

main.createa("http://www.baidu.com","百度");


</script> 

</body>

</html>


提问者:慕粉18361221551 2017-03-11 18:21

个回答

  • 移动的城堡上住着小智
    2017-03-11 19:36:26

    1. var a=createElement("a")这行代码应该写成document.createElement("a");

    2. main.appendChild(createa("http://www.baidu.com","百度"));才是正确的调用方法

    3. function中需要返回return a;

    4. 将function中的main......去掉