Created
May 30, 2010 02:39
-
-
Save koduki/418729 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
/* | |
* 作りかけ | |
*/ | |
function f(i){ | |
var us = document.location.toString().split("/"); | |
us.pop(); | |
var url = us.join('/'); | |
return (url + '/books/images/1.4585/' + i + '.jpg'); | |
} | |
function f2(s){ | |
return "<img onclick='javascript:" + s + "' src='" + f(1) + "'/>"; | |
} | |
var body = document.getElementsByTagName('body')[0]; | |
body.innerHTML = f2('(function(){ | |
var body = document.getElementsByTagName('body')[0]; | |
body.innerHTML | |
})()'); |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment