本文介绍了ExecJS::ProgramError: SyntaxError: 保留字“function"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
在我们的 rails rfq.js.coffee 中,我们只有一个简单的 js 代码:
In our rails rfq.js.coffee, we only have a simple js code:
$(function() {
$('#need_report').change(function(){
if ($(this).val() == true) {
$('#report_language').hide();
} // end if
}); // end change()
}); // end ready(function)
但是,此代码会导致错误,指出第一行中的 function() 是保留字.由于第一行基本上是一个 jquery $(document).ready(function () {})
,我们不知道为什么会出现这个错误.有什么想法吗?非常感谢.
However this code causes an error saying that function() in first line is a reserved word. Since the first line is basically a jquery $(document).ready(function () {})
, we have no clue why this error shows up. Any thoughts about it? Thanks so much.
推荐答案
你不能在 Coffeescript 文件中使用标准的 JS.将文件重命名为 rfq.js
,或将其转换为 coffeescript:
You can't use standard JS like that in a Coffeescript file. Either rename the file to rfq.js
, or convert it to coffeescript:
$ ->
$('#need_report').change ->
if $(this).val()
$('#report_language').hide()
这篇关于ExecJS::ProgramError: SyntaxError: 保留字“function"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!