重粒子的运行轨迹

Compiling ...
baryon.cpp
baryon.cpp(1) : warning C0000: all glory is fleeing

导航

js点击空白处触发事件

我们经常会出现点击空白处关闭弹出框或触发事件
<div class="aa" style="width: 200px;height: 200px;background-color: red;"></div>

js代码
$(document).mouseup(function(e) {
		var _con = $('.aa'); // 设置目标区域
		if (!_con.is(e.target) && _con.has(e.target).length === 0) {
			alert("4545");
		}
	});

当我们点击此div之外的地方时会触发事件,这里可以写业务和逻辑

posted on 2017-08-17 22:11  重粒子  阅读(2896)  评论(0编辑  收藏  举报