我正在尝试设置一个复选框以从 if 语句中检查,但它似乎不想工作......
这是 HTML:
<input type="checkbox" id="aircon" name="aircon" onchange="QuoteRefresh();" class="toggle" />
这是在我的 .js 文件中:
$('#aircon').prop('checked', true);
我在控制台中看不到任何错误。
任何人都可以对此有所了解。
它在 AJAX 成功响应中:
if (SelectedLevel == "Gold") {
$('#aircon').prop('checked', true);
}
谁能帮我??
这就是我在控制台中得到的:
[input#aircon.toggle, context: document, selector: "#aircon", constructor: function, init: function, selector: ""…]
0: input#aircon.toggle
context: document
length: 1
selector: "#aircon"
__proto__: Object[0]