http://www.oschina.net/code/snippet_54100_2960
1. [代码][JavaScript]代码
2 | $( 'table td' ).click( function (){ |
3 |
$( this ).parent().remove(); |
2. [代码][HTML]代码
04 |
< td >< img class = "delete" src = "del.gif" /></ td > |
08 |
< td >< img class = "delete" src = "del.gif" /></ td > |
3. [代码][JavaScript]代码
1 | $( 'table td img.delete' ).click( function (){ |
2 |
$( this ).parent().parent().remove(); |
4. [代码][JavaScript]代码
1 | $( 'table td' ).click( function (){ |
2 |
$.get( 'deleteRow.php' , {id: $( this ).parent().attr( 'id' )}, |
4 |
$( this ).parent().remove(); |
转载于:https://blog.51cto.com/6313847/1203182