|
|
|
ขอสอบถามเรื่อง javascript โดยการกด button ในการลบแถว tr ครับ |
|
|
|
|
|
|
|
Code (PHP)
<meta charset="utf-8">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<table>
<tr>
<td>1</td><td> <input type="button" value="ลบแถว" onclick="$(this).parent().parent().remove();"> </td>
</tr>
<tr>
<td>2</td><td> <input type="button" value="ลบแถว" onclick="$(this).parent().parent().remove();"> </td>
</tr>
</table>
|
|
|
|
|
Date :
2013-07-23 06:24:53 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ทำงานสะบายขึ้นเยอะเลย
|
|
|
|
|
Date :
2013-07-23 07:22:03 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อีกแบบนึง
Code (PHP)
<meta charset="utf-8">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$('.BtDel').click(function(e){
$(this).parent().parent().remove();
});
</script>
<table>
<tr>
<td>1</td><td> <input type="button" value="ลบแถว" class="BtDel"> </td>
</tr>
<tr>
<td>2</td><td> <input type="button" value="ลบแถว" class="BtDel"> </td>
</tr>
</table>
|
|
|
|
|
Date :
2013-07-23 08:40:54 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
$(document).ready(function(){
$(':button[value=ลบแถว]').click(function(){
$(this).parents('tr:first').remove();
});
});
|
|
|
|
|
Date :
2013-07-23 11:19:50 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jQuery สร้าง Dynamic Table สร้าง Rows ของ tr , tbody , td ให้กับ HTML Table
|
|
|
|
|
Date :
2013-07-27 06:48:38 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|