我有这个JavaScript代码:
var easter_egg = new Konami();
easter_egg.code = function() { alert('Konami code!'); }
easter_egg.load();
我想在“Konami代码!”上显示图片。
答案 0 :(得分:1)
看起来您将不得不设计自定义弹出窗口。快速搜索给了我http://www.ericmmartin.com/projects/simplemodal-demos/,可能会让你到达目的地。内置的“alert()”不支持除文本之外的任何内容。