gpt4 book ai didi

javascript - 我可以使用 Angular 将 mouseup 事件绑定(bind)到文档正文吗?

转载 作者:行者123 更新时间:2023-12-01 05:31:37 26 4
gpt4 key购买 nike

我有以下 jQuery 片段:

    jQuery(document).mouseup(function (e)
{
var container = jQuery('.dropDown');

if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide();
}
});

如果我在元素外部单击,它会隐藏该元素。

我想使用 Angular 做同样的事情,但我不太确定如何实现它。

将此类事件绑定(bind)到文档的 Angular 方式是什么?

最佳答案

是的!还记得 AngularJS 也使用 jQuery Lite 吗?

angular.element(document).bind('mouseup', function(){
console.log('Hello!');
});

关于javascript - 我可以使用 Angular 将 mouseup 事件绑定(bind)到文档正文吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36887313/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com