我想在我的项目中使用RequireJs,但是我发现我不能写下面的代码
<html>
<head>
</head>
<body>
<input type="button" />
<script>
// Use the jQuery
$(function() {
//some code
}
)
</script>
<input />
<input />
// I had added the jQuery in required shim and jQuery is working in RequireJs.
<script data-main="scripts/main" src="/scripts/require.js"></script>
</body>
</html>
$ is undefined
加载页面时出现错误。查了很多文章,都解决不了。我该如何处理?我不想将示例 js 函数移动到 .js 文件。