Skip to content

Instantly share code, notes, and snippets.

@rskull
Created July 26, 2011 14:25
Show Gist options
  • Save rskull/1106880 to your computer and use it in GitHub Desktop.
Save rskull/1106880 to your computer and use it in GitHub Desktop.
カーソルが乗った時文字を切り替える
//文字切り替え
//StrCng('ID','切り替えたい文字');
function StrCng(id,st){
var cng1 = document.getElementById(id);
var cng2 = cng1.innerHTML;
cng1.onmouseover = function () {
cng1.innerHTML = st;
}
cng1.onmouseout = function () {
cng1.innerHTML = cng2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment