gpt4 book ai didi

jquery - 对话框加载时更改我的 jquery 对话框按钮文本

转载 作者:行者123 更新时间:2023-12-01 03:21:16 24 4
gpt4 key购买 nike

我有一个像这样的普通 jquery 对话框:

<div id="dialog-confirm" title="Empty the recycle bin?">
<p>These items will be permanently deleted and cannot be recovered. Are you sure?</p>
</div>

<script>
$(function(){
$('#dialog-confirm').dialog({
resizable: false,
height: 140,
modal: true,
buttons:
{
"Delete all items": function() { $(this).dialog('close'); },
"Cancel": function() { $(this).dialog('close'); }
}
});
})
</script>

有时我需要更改文本按钮(例如,如果用户语言是法语)。在这种情况下,当加载 jquery 对话框时,我想调整按钮。可能吗?

谢谢

最佳答案

这样做可以动态翻译按钮文本:-

dynamicBtnHandler("Supprimer tous les éléments", "Cancel");

function dynamicBtnHandler(btn1, btn2)
{
var btnNames = {};
btnNames[btn1] = function(){ $(this).dialog('close'); };
btnNames[btn2] = function(){ $(this).dialog('close'); };
$(function(){

$('#dialog-confirm').dialog({
resizable: false,
height: 140,
modal: true,
buttons: btnNames
});
})
}

引用我的 LIVE DEMO

关于jquery - 对话框加载时更改我的 jquery 对话框按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9608244/

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