案例:
当页面上含有href属性的a标签被点击的时候,增加加载动画效果。
$(function (){ $("a[href]").click(function (){ //loading带文字 layer.open({ type: 2 ,content: '加载中,请稍后' }); }); });