適用於
obj.click()
- 行內
onclick
程式碼如下
<html>
<head>
<link rel="stylesheet" href="layui/css/layui.css" media="all">
</head>
<body>
<a class="layui-btn" id="test" href="javascript:;">測試</a><br/><br/>
<a class="layui-btn" onclick="hello('this is a test')" href="javascript:;">hello</a>
<script src="layui/layui.js"></script>
<script type="text/javascript">
layui.use(["jquery","layer","form"],function(){
var $ = layui.$,layer = layui.layer,form = layui.form;
$("#test").click(function(){
hello("張三");
});
window.hello = function(obj) {
layer.msg("hello world,"+obj);
}
});
</script>
</body>
</html>
複製程式碼
測試結果
-
點選
測試
按鈕 -
點選
hello
按鈕