gpt4 book ai didi

javascript - 在经典 ASP 和 jQuery 中使用复选框值填充文本框

转载 作者:行者123 更新时间:2023-12-02 18:20:53 28 4
gpt4 key购买 nike

这是我的代码片段:

 response.write "<th align=left><font size=2>"
response.write "1. <input type=checkbox class='checkboxes' value='ORG'>Organization"
response.write "</font> </th>"
response.write "<th align=left><font size=2>"
response.write "2. <input type=checkbox value='OpType' class='checkboxes'>Operation Type"
response.write "</font> </th>"
response.write "<th align=left><font size=2>"
response.write "3. <input type=checkbox checked value='YEAR' class='checkboxes'>Year"
response.write "</font> </th>"

response.write "<tr><td colspan='3'> <input name='DISTRIBUTION' size='45' /></td></tr>"

这是 JavaScript。

<script type="text/javascript" src="../Scripts/jquery-1.9.1.js"></script>
$('.checkboxes').change(function () {
alert("1");
$("input[Title='DISTRIBUTION']").val("");
if ($('.checkboxes').is(':checked')) {
$("input[Title='DISTRIBUTION']").val("Yes");
}
});

我没有看到警报,所以看起来它没有被解雇。我做错了什么吗?

最佳答案

也许脚本是在文档完全构建之前执行的?只是一个猜测,但请尝试将您的 jquery 代码包含在其中;

$(document).ready(function () { ... });

您还应该研究 KnockoutJs - 它会让您的生活更轻松......

关于javascript - 在经典 ASP 和 jQuery 中使用复选框值填充文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18832841/

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