为什么没有反应?

来源:9-16 创建元素节点createElement

慕粉18361221551

2017-03-11 18:21

<!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>


写回答 关注

1回答

  • 移动的城堡上住着小智
    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......去掉

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题