|
|
|
อยากจะซ่อนปุ่มโดยใช้ radio แต่ไม่รู้ซ่อนยังไง อยากให้ปุ่มหายไปพร้อมตารางงงง |
|
|
|
|
|
|
|
<label><input type="radio" name="toon" value="yes" checked/>
เคยได้รับทุการศึกษา </label>
<label><input type="radio" name="toon" value="no"/>
ไม่เคยได้รับทุการศึกษา </label>
<div id="DivTable">
<table id="myTbl" width="70" border="1" style="display:">
<tr>
<td align="center">ปีการศึกษา</td>
<td align="center">ชื่อทุน</td>
<td align="center">ประเภท</td>
<td align="center">จำนวนเงิน</td>
</tr>
<tr id="firstTr">
<td width="10"><input name="Scholarships_year" type="text" id="Scholarships_year" size="10" /></td>
<td width="20"><input name="Scholarships_name" type="text" id="Scholarships_name" size="20" /></td>
<td width="20"><input name="Scholarships_kind" type="text" id="Scholarships_kind" size="20" /></td>
<td width="20"><input name="Scholarships_money" type="text" id="Scholarships_money" size="20" /></td>
</tr>
</table>
<p>
<button id="addRow" type="button">+</button>
<button id="removeRow" type="button">-</button>
</p>
</div>
$(function(){
$("#addRow").click(function(){
var NR =""; NR="<tr>";
NR+="<td width=\"60\">"; NR+="<input type=\"text\" name=\"Scholarships_year\" id=\"Scholarships_year\" size=\"10\" />"; NR+="</td>";
NR+="<td width=\"120\">"; NR+="<input type=\"text\" name=\"Scholarships_name\" id=\"Scholarships_name\" size=\"20\" />"; NR+="</td>";
NR+="<td width=\"120\">"; NR+="<input type=\"text\" name=\"Scholarships_kind\" id=\"Scholarships_kind\" size=\"20\" />"; NR+="</td>";
NR+="<td width=\"120\">"; NR+="<input type=\"text\" name=\"Scholarships_money\" id=\"Scholarships_money\" size=\"20\" />"; NR+="</td>";
NR+="</tr>";
//$("#myTbl").append($("#firstTr").clone());
$("#myTbl").append($(NR)); });
$("#removeRow").click(function(){
if($("#myTbl tr").size()>2){
$("#myTbl tr:last").remove();
}else{
alert("ต้องมีรายการข้อมูลอย่างน้อย 1 รายการ");
}
});
$('input[name="toon"]').click(function(){
var Ck = $(this).val();
if(Ck=="no"){
$('#DivTable').hide();
}else{
$('#DivTable').show();
}
});
});
ตัวอย่าง
ซ่อน Table
|
|
|
|
|
Date :
2013-09-04 22:31:29 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับบบ ทำแบบนี้ก็ได้ด้วยย
|
|
|
|
|
Date :
2013-09-05 07:45:47 |
By :
komza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ใช้ jquery v. ไหนในการเชื่อมต่อ (เชื่อมก่อนคำสั่งที่เป็น function) ครับ ท่านกูรู
|
|
|
|
|
Date :
2013-09-05 08:41:09 |
By :
ฟฟิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ jquery-1.7.1.min
ได้แล้วครับ ไม่น่าใจร้อนถามเลย คิคิ
|
|
|
|
|
Date :
2013-09-05 08:45:16 |
By :
ฟฟิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|