首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

jquery-ui dialog buttons 按钮动态名称的有关问题

2013-09-17 
jquery-ui dialog buttons 按钮动态名称的问题 $(#dialog).dialog({autoOpen: false,width: 600,modal:

jquery-ui dialog buttons 按钮动态名称的问题

 $('#dialog').dialog({
                autoOpen: false,
                width: 600,
                modal: true,
                title: dialogTitle,
                buttons: {
                    "确定": function () {
                        alert('确定');
                    },                   
                    "关闭": function () {
                        $(this).dialog("close");
                    }
                }
               });


我想实现弹出了按钮“确定”两个字改在"确定新增",怎么办?


[解决办法]
 $('#dialog').dialog({
                autoOpen: false,
                width: 600,
                modal: true,
                title: dialogTitle,


                buttons: {
                    "确定新增": function () {
                        alert('确定');
                    },                   
                    "关闭": function () {
                        $(this).dialog("close");
                    }
                }
               });


[解决办法]
就那么回事情,估计也能给ID的吧.

热点排行