在 javascript 资产文件中,我有一个jstester.js
像这样的文件:
function hehe()
{
alert("wedsdsd");
}
document.write("fdygsdfysdgf");
然后在public index.html
文件中我有这个:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script src="/assets/jstester.js">
hehe();
</script>
</body>
</html>
所以我认为这就是我可以从我的 Javascript 文件中调用方法但看起来它不起作用,没有消息框出现......那么正确的方法是什么?