gpt4 book ai didi

javascript - 模式框在运行时更改标题和按钮名称

转载 作者:行者123 更新时间:2023-11-28 13:50:23 24 4
gpt4 key购买 nike

我希望能够更改模式的标题和运行时的按钮。目前我有这个我有批准或拒绝的操作

var recButton = actions =='approval' ? 'Approve' : 'Deny';

$("#dialog").dialog(
{
modal : true,
buttons : {
'update all' : function() {
// window.location.reload();
// $( this ).dialog( "close" );
//do something here
},
Cancel : function() {
$(this).dialog("close");
}
}
}); //dialog
});

我也尝试对按钮执行此操作

$("#dialog").dialog(
{
modal : true,
buttons : {
recButton : function() { ...

但在模态中它没有很好地翻译,只是说recButton而不是变量值。我也需要更改标题。

更新:通过简单的标题即可获得标题:

最佳答案

嘿 Autolycus:试试这个人:工作演示 http://jsfiddle.net/C4A9b/10/

请使用firebug检查元素id/类:

$('.ui-dialog-title').html("HULK is Awesome"); 应该可以解决问题。

希望有帮助:)

代码

$(document).ready(function() {
$('#theLink').click(function(){
$( "#forgot-dialog" ).dialog( "open" );
});

$( "#forgot-dialog" ).dialog({
modal: true,
autoOpen: false,
height: 255,
width: 300,
buttons: {
"ChangeTitle": function() {

alert("Title before cahnge ==> " + $('.ui-dialog-title').html());
$('.ui-dialog-title').html("HULK is awesome");
// document.forms["forgotform"].submit();
},
Cancel: function() {
$( this ).dialog( "close" );
}
},
});


});

var formname = "form_name_here";

$("#ui-dialog-title-"+formname).innerHTML = "Hulk is awesome title";

下图显示之前和之后。

单击更改标题按钮之前的图像

enter image description here

点击更改标题后

enter image description here

关于javascript - 模式框在运行时更改标题和按钮名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11303632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com