87,995
社区成员
发帖
与我相关
我的任务
分享
window.onload = www;
var sc;
function www(){
sc = document.getElementById("kkk");
sc.onmouseover = th;
}
function th(){
sc.setAttribute("title","22222");
}
方式二
window.onload = www;
function www(){
var sc = document.getElementById("kkk");
sc.onmouseover = function(){
sc.setAttribute("title","22222");
}
}
方式三
window.onload = www;
function www(){
var sc = document.getElementById("kkk");
sc.onmouseover = th;
}
function th(){
this.setAttribute("title","22222");
}