gpt4 book ai didi

javascript - 以 Angular 触发 dblclick 事件

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

我正在尝试触发 Angular 元素上的双击事件。

        $timeout(function () {
var elem = document.getElementById(id);
angular.element(elem).trigger("dblclick")
}, 1);

具有事件监听器的元素:

        var nodeEnter = node.enter().append("g")
.attr("id", function (d) {
if (d.id)
return d.id;
else
return Math.random();
})
.on("dblclick", function () {
console.log("dblclick");
});

什么也没发生。我在这里做错了什么?

顺便说一句,它进入了调用触发器的函数。触发器不会调用 dblclick。

最佳答案

If you want to fire a double click element just do the following.

<h1 ng-dblclick="count = count + 1" ng-init="count=0">Welcome</h1>

关于javascript - 以 Angular 触发 dblclick 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41722281/

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