gpt4 book ai didi

javascript - 使用 ajax 内容响应启用和禁用按钮

转载 作者:行者123 更新时间:2023-12-03 10:07:37 25 4
gpt4 key购买 nike

我不明白为什么它不适合我。我知道使用 attrprop 启用和禁用按钮。

 $(document).on("click", "#btn", function(){
$(this).html("Sending...");
$(this).prop("disabled",true);
// I have ajax content here. and in success of ajax. run
$(this).prop("disabled",false);

ajax 成功时不会启用按钮禁用。我的代码有问题吗?

最佳答案

在ajax内部不要使用$(this),而是可以这样做:

$(document).on("click", "#btn", function(){
var button = $(this);

在ajax内部,那么你可以使用这个:

button.prop("disabled",true);

关于javascript - 使用 ajax 内容响应启用和禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30290099/

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