Created
July 26, 2011 14:25
-
-
Save rskull/1106880 to your computer and use it in GitHub Desktop.
カーソルが乗った時文字を切り替える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//文字切り替え | |
//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