gpt4 book ai didi

jquery - 如何在asp.net中将文本附加到Div表单jQuery?

转载 作者:行者123 更新时间:2023-12-01 08:10:25 24 4
gpt4 key购买 nike

如何通过Jquery在复选框Checked状态为true时向Div控件添加CheckBox名称

我已经尝试过以下代码。但没有得到结果。

ASP 代码:

<div align="center" id="chkBoxes">
<asp:CheckBox ID="chbIceCream" Text ="Ice Cream" runat="server" />
<asp:CheckBox ID="chbCake" Text ="Cake" runat="server" />
<asp:CheckBox ID="chbChocolet" Text ="Cho colet" runat="server" />
</div>

<div id="ContentDiv">


</div>

Jquery 代码:

$(document).ready(function () {
$('#chbIceCream').click(function () {
debugger;
var Text = $('#chbIceCream').text();
if ($(this).attr('checked'))
$('#ContentDiv').append(Text);
});
});

如果有人帮忙,请。

最佳答案

设置您的控制ClientIDMode="static"如果你想在javascript中使用服务器端id或在javascript中使用CliendID。

使用 ClientIDMode="static"

<asp:CheckBox ID="chbIceCream" Text ="Ice Cream" runat="server" ClientIDMode="static" />

控件 ID 的 jQuery 选择器没有变化

$(document).ready(function () {
$('#chbIceCream').click(function () {
debugger;
var Text = $('#chbIceCream').text();
if ($(this).attr('checked'))
$('#ContentDiv').append(Text);
});
});

使用 ClientID

$(document).ready(function () {
$('#<%= chbIceCream.ClientID %>').click(function () {
debugger;
var Text = $('#chbIceCream').text();
if ($(this).attr('checked'))

$('#ContentDiv').append(Text);
})
});

关于jquery - 如何在asp.net中将文本附加到Div表单jQuery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14037036/

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