我正在尝试在 sample.coffee 文件中加载咖啡脚本以及 coffee-script.js 文件,并对 HTML 执行一些简单的操作。但我无法加载 sample.coffee 文件。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="sample.coffee" type="text/coffeescript"></script>
<script src="coffee-script.js" type="text/javascript"></script>
</head>
<body>
</body>
</html>
这是 sample.coffee 中的咖啡脚本代码
message = "Welcome to Coffeescript"
alert message
我提到了博客http://forgivingworm.wordpress.com/2010/09/27/running-coffeescript-in-browser/
我试图在 .cshtml 上的 MVC4 项目中运行它。所以我在 MS 世界下运行。
我不确定这是否可能?对此的任何见解将不胜感激。