我试图从另一个文件中调用一个函数(但它们放在同一个文件夹中),但它不起作用,我得到错误消息“four_sprint_selection不是函数”。我不知道为什么?
在第一个文件中显示我的代码:
<div class="select">
<table>
<tr>
<td>4Sprint</td>
<td>
<select id="four_sprint_selection" onchange="four_sprint_selection(value)">
<option>Select</option>
<option value = next>Next</option>
</td>
</tr>
<table>
</div>
在另一个文件(functions.js)中,我有这段代码:
function four_sprint_selection(val){
if (val = "next" ){document.write(This is next big sprint)}
}
如果我使用require,它只会打印出文本中的代码。