方法1:引入js脚本块
页面中引入<script>标签,标签范围里写js代码。
<script type="text/javascript">//脚本代码function f1(){...}
</script>
方法2:引入js文件
<script type="text/javascript" src="t1.js"></script>
在t1.js文件中写js函数即可。例如:
t1.js
function t1(){...
}
最后,在组件中绑定这些函数。通过点击触发。
<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>HTML中嵌入JS代码</title></head><body><input type="button" value="hello" onclick="t1()"/></body>
</html>