我想附加並顯示方法,如果複選框被選中,問題是兩個方法不能在同一時間工作。它顯示div或追加表。如何可以將表和div如果複選框被選中?如何在jQuery中使用兩種不同的方法?
這裏是代碼:
<input type="checkbox" name="want_nl" id="want_nl" value="newsletters" />age
<div id="div1" class="tb" style="background-color:#0099CC">your img here</div>
<table cellpadding="0" cellspacing="0" border="1" width="100%" id="newsletters"></table>
$(function(){
$("input[name=want_nl]").click(function(){
if ($(this).is(":checked"))
{
$('#newsletters').append('<table id="newsletter_types"></table>');
$('#newsletter_types').append('<tr><td colspan="3" ><strong>Optioneel</strong></td></tr>');
$('#newsletter_types').append('<td valign="top">Zoet-houdertje Chocolade lollys</td>');
$('#newsletter_types').append('<td valign="top" >15 stuks a € 22,50</td>');
$('#newsletter_types').append('<td valign="top">uuu</td></tr>');
$('.tb').show();
}
else
$("#newsletter_types").remove();
$('.tb').hide();
});
});