我正在尝试重新绑定单击事件以发布表单并 ajax html
$('.btnSave').addClass('yui3-button').click(function() {
    var $this =  $(this);
    var id = $(this).parent().attr('id');
    $.post(
        "MTrades/save", 
        $.param({ mycase: 1 }) + '&' + $(this).parent().parent().serialize(),
        function(data) {
            alert("page - " + data);
            $this.parent().fadeOut("fast").load(
                "MTrades/index/"+id+"/options", 
                function() {
                    //rebind the click event
                    BindClick();
                }).fadeIn("fast");
            });
            return false;
        });
表单参数发送第一次但不是第二次(在我保存并重新加载 html 之后) .serialize() 返回空。
html(缩短):
<form id="Form2">
    <button>
    <div>
        <button>save
        <form>
            <table>
            </table>
        </form>
    </div>
</form>
谢谢