3

嗨,是否可以将窗口提示上的“确定”和“取消”按钮更改为只有一个“关闭”按钮?出于我的目的,我喜欢 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);
      }

谢谢!

4

1 回答 1

-2

根据 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");
     }
});
于 2012-04-24T15:26:26.627 回答