呼叫layui.use中function的正確姿勢

Genee發表於2018-11-21

適用於

  • 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>
複製程式碼

測試結果

  • 點選測試按鈕

    呼叫layui.use中function的正確姿勢

  • 點選hello按鈕

呼叫layui.use中function的正確姿勢

相關文章