1 Star 0 Fork 0

zhengchen/avalon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index_on.html 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
qincheng 提交于 2014-02-09 12:15 . 重命名例子
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>ms-on-*</title>
<!-[if IE 6.0]><script src="json3.js" type="text/javascript"></script><![endif]->
<script src="avalon.js" type="text/javascript"></script>
<script>
var model = avalon.define("on", function(vm) {
vm.firstName = "司徒"
vm.array = ["aaa", "bbb", "ccc"]
vm.argsClick = function(e, a, b) {
alert(a + " " + b)
}
vm.loopClick = function(a) {
alert(a)
}
vm.submit = function() {
var data = model.$model
setTimeout(function() {
alert(JSON.stringify(data))
})
}
});
</script>
</head>
<body>
<h3 style="text-align: center">ms-on-*</h3>
<fieldset ms-controller="on">
<legend>有关事件回调传参</legend>
<div ms-click="argsClick($event, 100, firstName)">点我</div>
<div ms-each-el="array" >
<p ms-click="loopClick(el)">{{el}}</p>
</div>
<button ms-click="submit">点我</button>
</fieldset>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cowboy13/avalon.git
git@gitee.com:cowboy13/avalon.git
cowboy13
avalon
avalon
master

搜索帮助