你必須寫自己的CSS,但這裏是一個例子;
HTML:
<input type="button" id="redirect" value="show alert" />
<div id="alertWindow">
You'll be redirect to google.com. Continue?
<br /><br />
<input type="button" id="btnOk" value="OK" /> <input type="button" id="btnCancel" value="Cancel" />
</div>
CSS:
#alertWindow {
display: none;
text-align: center;
border: 1px solid #333;
width: 200px;
height: 80px;
border-radius: 5px;
padding: 10px;
}
#btnOk, #btnCancel { width: 70px; }
最後的Javascript:
$(function() {
$("#redirect").click(function(){
$('#alertWindow').show();
return false;
});
$('#btnCancel').click(function() {
$('#alertWindow').hide();
});
$('#btnOk').click(function() {
location.href = 'http://www.google.com';
return false;
});
});
Here是這個代碼的上的jsfiddle
工作副本