gpt4 book ai didi

javascript - 在 window.prompt 上更改确定/取消?

转载 作者:行者123 更新时间:2023-11-28 11:04:33 25 4
gpt4 key购买 nike

您好,是否可以将窗口提示中的“确定”和“取消”按钮更改为仅一个“关闭”按钮?出于我的目的,我喜欢 window.prompt 显示我的链接并且很容易复制,因为它已经突出显示。这是我的代码:

function sLink()
{
var ctr = map.getCenter();
var text = "http..../viewer-emailtest.shtml?lat="+ ctr.lat().toString() + "&lng=" + ctr.lng().toString() + "&z=" + map.getZoom().toString()
window.prompt("Copy the highlighted link below and paste into your email program to share:", text);
}

谢谢!

最佳答案

根据OP评论,用jquery回答

jQuery.alerts.okButton = 'Continue';
jQuery.alerts.cancelButton = 'Cancel';
jQuery.alerts.confirm("are you sure to do ?","Confirm",function(result){
if(result){
alert("you selected continue");
}else{
alert("you selected cancel");
}
});

关于javascript - 在 window.prompt 上更改确定/取消?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10300545/

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