用setAttribute來設(shè)置文字顏色不用 a.style.color,如何寫,
function createa(url,text)
{
? ? var a=document.createElement("a");
? ? a.setAttribute("href",url);
? ? a.innerHTML=text;
? ? a.style.color="red";
? ? main.appendChild(a);
}
function createa(url,text)
{
? ? var a=document.createElement("a");
? ? a.setAttribute("href",url);
? ? a.innerHTML=text;
? ? a.style.color="red";
? ? main.appendChild(a);
}
2017-06-06
舉報(bào)
2017-06-06
function createa(url,text)
{
? ? var a=document.createElement("a");
? ? a.setAttribute("href",url);
? ? a.innerHTML=text;
? ? /*a.style.color="red";*/
? ? a.setAttribute("style","color:red");
? ? main.appendChild(a);
}
// 調(diào)用函數(shù)創(chuàng)建鏈接
createa("http://idcbgp.cn","慕課網(wǎng)");