问答详情
源自: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 aURL=document.createElement("a");

 aURL.type="text";

 aURL.href="http://www.baidu/com";

 aURL.style="color:'red'";

 aURL.value="点击百度一下";

 main.appendChild(aURL);

    

}

// 调用函数创建链接

var button=document.createElement("input");

button.type="button";

button.value="点击创建链接";

button.onclick="javascript:'createa(url,text)'";

main.appendChild(button);


</script> 

</body>

</html>


提问者:Samuel_Yang 2017-03-02 14:14

个回答

  • Dva_Come_to_web
    2017-03-03 00:19:41
    已采纳

    既然把url和text作为参数传进去了,就要使用它们啊。更何况网址应该是http://www.baidu.com

  • Dva_Come_to_web
    2017-03-03 00:21:33

    正确答案是改为

    aURL.href = url;
    aURL.value = text;