为什么这样就直接调用了函数呢?createa("http://www.imooc.com/","慕课网");
难道不应该使用createElement先创建一个属性为button的input标签,然后去掉用吗?
createa("http://www.imooc.com/","慕课网"); 这样子为什么直接就能调用了。
还有url,text这两个参数是指的变量吗?
var body= document.body;
//创建链接
function createa(url,text)
{
var a = document.createElement("a");
a.href = url;
a.innerHTML = text;
a.style.color = "red";
body.appendChild(a);
}
// 调用函数创建链接
createa("http://www.imooc.com/","慕课网");
这种写法是简写?还是有点不太懂