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");
}