ボックスを生成して警告する次のcoffeescriptコードがあります。
show_alert = () ->
alert("Hello! I am an alert box!")
これは次のようにコンパイルされます:
(function() {
var show_alert;
show_alert = function() {
return alert("Hello! I am an alert box!");
};
}).call(this);
私のhtmlには次のものがあります
<input onclick='show_alert()' type='button' value='Show alert box' />
しかし、警告ボックスが表示されませんか? 以下は、ブラウザからコピーされた html です。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test Rails Application</title>
<style type='text/css'>.application h1 {
color: lime; }
</style>
<script type='text/javascript'>(function() {
var show_alert;
show_alert = function() {
return alert("Hello! I am an alert box!");
};
}).call(this);
</script>
</head>
<body>
<h1>Hello from applicaiton.html.haml</h1>
<div class='application'><h1>Hello World</h1>
<input onclick='show_alert()' type='button' value='Show alert box' />
</div>
</body>
</html>
警告ボックスを表示できないのはなぜですか?