jquery:在单元格中添加按钮

时间:2011-02-21 10:14:53

标签: jquery

如何使用jquery在表格的单元格中插入按钮并处理该按钮的onclick事件?

谢谢。

2 个答案:

答案 0 :(得分:4)

var button = $("<button>Hi there</button>");
button.click(function() {
    alert("Hi back!");
});
button.appendTo("#tablecell");

http://jsfiddle.net/Fxayf/1/

答案 1 :(得分:0)

<script>
    function insert(button){
        $(button).appendTo($('td.toinsert'));
    }
</script>
<table>
    <tr>
    <td class="toinsert">inside cell</td>
    </tr>
</table>
<input type="button" onclick="insert(this)" value="button"/>

还用于创建按钮并向其添加事件

<script>
    $(function(){
        $('<input></input>').attr({'type': 'button'}).val("button").click(function(){
            alert('hello');
        }).appendTo($('td.toinsert'));
    });
</script>
<table>
    <tr>
    <td class="toinsert">inside cell</td>
    </tr>
</table>