hyrlh
2016-09-02 18:18
<!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 newUrl=document.createElement("a");
newUrl.setAttribute("href",url);
newUrl.setAttribute("value",text);
newUrl.style.color="red";
main.appendChild(newUrl);
}
// 调用函数创建链接
createa("http://www.imooc.com","慕课网");
</script>
</body>
</html>
在你的代码上修改的。
url去掉双引号,与函数里的参数保持一致,否则路径加载不出来。
setAttribute是设置元素属性,而不是在页面中加载出来。直接把text赋值给newUrl就行了。
但是调用createa函数的时候第一个参数是有双引号的,那这样调用createa函数的时候不也传导的是字符串吗?
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题