怎么在用JS新建的标签里加hover属性,或者onmouseover事件

<script type="text/javascript">
var main = document.body;
//创建链接
    
function createa(url,text)
{
    var a = document.createElement("a");
    a.href = url;
    a.text = text;
    a.style.color = "black";
    a.style.textDecoration = "none";
    main.appendChild(a);
}
// 调用函数创建链接
    createa("http://www.imooc.com","慕课网");
    

</script>


窜天吼猴
浏览 4081回答 1
1回答

qq_落_5

你把这个写在你的创建方法里面试试a.onmouseover = function(){    alert('ahaha');};或者创建的时候加个id然后用这个中document.getElementById("btn").onclick = function(){    alert('ahaha');};
打开App,查看更多内容
随时随地看视频慕课网APP