作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用“lua.vm.js”在Web客户端中使用lua进行开发。
我想知道如何从js脚本调用Lua函数。
var element = document.getElementById("myBtn")
element.addEventListener("click", function(){ /*call here Lua function*/ });
最佳答案
方法#1
从 Lua 代码内部操作 JavaScript 对象:
<script src="lua.vm.js"></script>
<script type="text/lua">
function YourLuaFunction()
-- your Lua code is here
end
</script>
<button id="MyBtn">Lua inside</button>
<script type="text/lua">
js.global.document:getElementById("MyBtn"):addEventListener("click", YourLuaFunction);
</script>
<小时/>
方法#2
使用L.execute(code)
从JS执行Lua代码:
简短示例:element.addEventListener("click", function(){ L.execute('YourLuaFunction()'); });
长示例:
<script src="lua.vm.js"></script>
<script>
function executeLua(code) {
try { L.execute(code); } catch(e) { alert(e.toString()); }
}
</script>
<script type="text/lua">
function YourLuaFunction()
-- your Lua code is here
end
</script>
<button onclick="executeLua('YourLuaFunction()')">Exec Lua code</button>
关于javascript - 如何从 Javascript 调用 Lua 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39494418/
我是一名优秀的程序员,十分优秀!