I have following table structure.
<table>
    <tr>
        <td><a href="#"></td>
    </tr>
</table>
When I click on <a> I want to add new <tr> next to <tr> of which <a> is clicked.
So the result will be:
<table>
    <tr>
        <td><a href="#"开发者_C百科></td>
    </tr>
    <tr>
        <td><a href="#"></td>
    </tr>
</table>
Example:
$('a').bind('click', function(){
  $('<tr><td>new td</td></tr>').insertAfter($(this).closest('tr'));
});
If you want to create a clone use:
$('a').live('click', function(){
  var $this     = $(this),
      $parentTR = $this.closest('tr');
  $parentTR.clone().insertAfter($parentTR);
});
Example link: http://www.jsfiddle.net/7A6MQ/
Basically, you create a copy from the tr element (which includes child nodes) and insert that copy after that element. Therefore, you need the .live binding to make sure that newly created a elements do also invoke that click handler.
Ref.: .clone(), .insertAfter(), .live()
Also, you can write:
$('a').bind('click', function () {
    $(this).closest('tr').after('<tr><td>new td<td></tr>');
});
Not so much difference but looks more readable.
Here is the code. Please check and let me know if there is any issue.
function AddRaw(obj){
var $this     = obj;
$parentTR = $this.closest('tr');
$parentTR.clone().insertAfter($parentTR);
}
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论