showmodaldialog方法已被廢棄,推薦使用其他替代方法來實現類似的功能。一種替代方案是使用模態框庫,比如Bootstrap Modal或者使用原生的JavaScript來創建自定義的模態框。
例如,可以使用以下代碼來創建一個簡單的模態框:
<!DOCTYPE html>
<html>
<head>
<title>Modal Example</title>
<style>
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.modal-content {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
</style>
</head>
<body>
<button onclick="openModal()">Open Modal</button>
<div id="myModal" class="modal">
<div class="modal-content">
<span onclick="closeModal()" style="float:right;">×</span>
<p>This is a modal!</p>
</div>
</div>
<script>
function openModal() {
document.getElementById("myModal").style.display = "block";
}
function closeModal() {
document.getElementById("myModal").style.display = "none";
}
</script>
</body>
</html>
這段代碼創建了一個簡單的模態框,點擊按鈕可以打開模態框,點擊模態框的關閉按鈕或者點擊背景都可以關閉模態框。可以根據需要進行修改和定制。