gpt4 book ai didi

javascript - 如何在代码中触发 jQuery 更改事件

转载 作者:IT老高 更新时间:2023-10-28 13:16:24 24 4
gpt4 key购买 nike

我有一个工作正常的更改事件,但我需要让它递归。

所以我有一个在更改时触发的函数,它将基于类选择器“更改”其他下拉菜单(注意“drop downS”,可能有多个)。此代理更改不会触发该功能,因此会失败。我怎样才能让它工作?

代码

$(document).ready(function () {
var activeDropBox = null;

$("select.drop-box").change(function () {
var questionId = $(this).attr("questionId");
var selectedAnswer = $(this).val();
activeDropBox = this;

alert(this.questionId);

$.ajax(
{
type: "POST",
url: answerChangedActionUrl,
data: { questionId: questionId, selectedValue: selectedAnswer },
success: function (data) {
SetElementVisibility(data.ShowElement, questionId);
}, error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('XMLHttpRequest:' + XMLHttpRequest.responseText);
alert('textStatus:' + textStatus);
alert('errorThrown:' + errorThrown);
}
});
});

function SetElementVisibility(visible, questionId) {
// I would like each child to then trigger the change event...
$(".childOf" + questionId)[visible ? 'show' : 'hide']('slow');

// Suggested code
//$(".childOf" + questionId + " select").trigger("change");

if (!visible) {
$(".childOf" + questionId + " select").attr('selectedIndex', 0);
}
}
}

到目前为止,这些建议似乎有效,但由于更改事件触发了 ajax 帖子,它现在似乎在这里失败了。我会玩弄它,但这是我觉得的另一个问题。

最佳答案

使用 trigger() method

$(selector).trigger("change");

关于javascript - 如何在代码中触发 jQuery 更改事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4247264/

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