Tengo el siguiente código CoffeeScript para generar y cuadro de alerta:Funciones de llamada definidas con script de café?
show_alert =() ->
alert("Hello! I am an alert box!")
que compila a:
(function() {
var show_alert;
show_alert = function() {
return alert("Hello! I am an alert box!");
};
}).call(this);
en mi html Tengo el siguiente
<input onclick='show_alert()' type='button' value='Show alert box' />
Sin embargo, no hay alerta cuadro muestra? El siguiente es el código HTML copiado desde el navegador:
<!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>
Por qué no soy capaz de obtener un cuadro de alerta a aparecer?
jftr creo 'root = exportaciones? esta; root.show_alert = show_alert' es mejor en lugar de acceder directamente a la ventana. Ver http://stackoverflow.com/a/4215132/832273 para más detalles –
@mru, de hecho, gracias – akonsu
@mru javascript siempre es extremadamente confuso para mí. ¿Hay algún sitio o texto de referencia específico que cualquiera de ustedes recomendaría? – rudolph9