gpt4 book ai didi

javascript - 我们如何禁用 Google Chrome 中的按钮

转载 作者:行者123 更新时间:2023-12-02 18:41:33 29 4
gpt4 key购买 nike

我需要使用依赖于值的 Jquery 禁用按钮。该按钮在 IE 8 中被禁用。但在 Google Chrome 中它不会被禁用。

代码。

 function fill(result) {
debugger;
$("#divSummary").dialog("open");
$("#divSummary").html(result.Records);
if (result.Edit== "0") {
$('#EditSummary').attr("disabled", true);// This button not disabled in google chrome
return false;
}
else
$('#EditSummary').attr("disabled", false);
}

最佳答案

使用.prop()相反:

function fill(result) {
debugger;
$("#divSummary").dialog("open");
$("#divSummary").html(result.Records);
if (result.Edit== "0") {
$('#EditSummary').prop("disabled", true);
return false;
}
else
$('#EditSummary').prop("disabled", false);
}

关于javascript - 我们如何禁用 Google Chrome 中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16788250/

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