gpt4 book ai didi

jQuery 单击目标选择器

转载 作者:行者123 更新时间:2023-12-01 07:33:16 25 4
gpt4 key购买 nike

我的页面中有以下 HTML:

<a href="javascript:void(0)" class="move-next"><img src="/Content/images/small-next-arrow.png" height="16" width="16" alt="Next status arrow" title="Progress to next status"/></a></div>

我有以下 javascript 尝试处理点击事件:

function InitProgressionSelectors() {
$(".move-next").click(function() {
moveNext(this);
});

$(".move-previous").click(function() {
movePrevious(this);
});
}

function moveNext(target) {
var sourceContainer = target.parent("td");
var targetContainer = sourceContainer.next("td");
}

我显然错过了一些东西,因为 moveNext 函数中的“target”返回一个 HTMLAnchorElement,但是当我尝试包装它,或者以某种方式将其作为 jQuery 对象访问时,所以我可以尝试获取它的句柄父容器,我收到错误。

对 $(target) 的引用返回 null。如何获取对目标的引用作为 jQuery 对象,以便我可以在该上下文中使用它?我错过了什么?

谢谢。

最佳答案

您需要传递jquery对象

$(".move-previous").click(function() {
movePrevious($(this));
});

关于jQuery 单击目标选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4360725/

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