是否使用备件:<asp:RadioButtonList ID="RBT" runat="server">
<asp:ListItem Value="0" Text="是"></asp:ListItem>
<asp:ListItem Value="1" Text="否"></asp:ListItem>
</asp:RadioButtonList>
当点击 是 时 触发jqery事件:
<script>
$(document).ready(function () {
$("#<%=RBT.ClientID%>").click(function () {
alert(1);
var str = "";
str += "<table><tr><td></td><td></td></tr></table>"
$("#div").append(str);
});
});
进行拼串
<div id="div">
</div>
在div中拼出一个表格