$(document).ready (loaddata);

/*****^*****^*****^*****^*****^*****^*****^*****^*****^*****^*****
 ** 
 ** 页面初始化时加载数据
 ** 
 *****^*****^*****^*****^*****^*****^*****^*****^*****^*****^*****/
 function loaddata()
{  
    $('#btnSubmit').bind('click',function()
    {
        var name=htmlspecialchars($('#name').val());
        var unit=htmlspecialchars($('#name').val());
        var phone=htmlspecialchars($('#name').val());
        var title=htmlspecialchars($('#name').val());
        var body=htmlspecialchars($('#name').val());
        QnSoft.controls.yjfk.saveyj(name,unit,phone,title,body,function(res)        
        {
            var dialog = new pop_dialog('pop_dialog');
            dialog.show_message('提示','提交成功','确定');
            $('#name').attr('value','');
            $('#phone').attr('value','');
            $('#unit').attr('value','');
            $('#title').attr('value','');
            $('#body').attr('value','');
        });
    })
    $('#btnReset').bind('click',function()
    {
        $('#name').attr('value','');
        $('#phone').attr('value','');
        $('#unit').attr('value','');
        $('#title').attr('value','');
        $('#body').attr('value','');
    })
}