3

こんにちは、ウィンドウ プロンプトの [OK] ボタンと [キャンセル] ボタンを 1 つの [閉じる] ボタンに変更することは可能ですか? 私の目的では、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 に答える