Laravel5.4 mix 引用自己的JS文件报错

// app.js
require('./plugins/forms.fun');

// forms.fun.js
function text()
{
    alert(1);
}

// blade
<input class="btn btn-default btn-sm" type="submit" onclick="text();" value="提交">

错误:Uncaught ReferenceError: commentStore is not defined at <anonymous>:1:1

JellyBool

跟你的引入应该没有什么关系吧,你的 commentStore 没定义而已

假如_丶 回复 JellyBool

e…复制错误了。。。

function commentStore()
{
    alert(1);
}

我定义 commentStore 了...