layui實現點選事件的方法

2020-10-14 21:00:18

說明:這裡的點選事件是指單純的點選事件,而不是提交事件,或者是資料表格中內嵌的button,對於這兩者,layui是有lay-submit和lay-event這個屬性進行支援的,所以這裡只能使用最原始的js和jq進行監聽點選事件。

(推薦教學:)

第一種,js的監聽

<button class="layui-icon layui-icon-export" id="withExport"></button>
$(document).on('click',"#withExport",function(){
        layer.msg("按鈕點選");
 });

第二種,jQuery的監聽

<button class="layui-icon layui-icon-export" id="withExport"></button>
$("#withExport").click(function(){
	layer.msg("點選事件");
});

以上就是layui實現點選事件的方法的詳細內容,更多請關注TW511.COM其它相關文章!