HTML:
<script type="text/javascript" src="scripts/js/script.js"></script>
JQuery函数在这里:
$(document).ready(function() {
function rnmtn(){
console.log("red");
}
});
如何在控制台中调用rnmtn();
而不返回undefined
- 脚本没有链接到html对象 - 我需要它自己运行。
答案 0 :(得分:0)
制作你的功能
function rnmtn(){
console.log("red");
}
并通过键入
在控制台中调用它rnmtn()
答案 1 :(得分:0)
您需要在窗口范围内访问该功能,
如
$(document).ready(function() {
window.rnmtn = function rnmtn(){
console.log("red");
}
});