溫馨提示×

window.showmodaldialog返回值處理

小樊
152
2024-07-01 18:41:39

在使用 window.showModalDialog 方法彈出模態(tài)對話框時(shí),可以通過以下步驟處理返回值:

  1. 在調(diào)用 window.showModalDialog 方法時(shí),可以傳入一個(gè)參數(shù)用于指定返回值的鍵名,例如:
var returnValue = window.showModalDialog("dialog.html", {}, "dialogWidth:500px; dialogHeight:300px");
  1. 在彈出的模態(tài)對話框中,可以通過以下代碼將需要返回的值賦給 window.returnValue
window.returnValue = "value";
  1. 在父窗口中可以通過以下方式獲取返回值:
if (returnValue) {
  console.log(returnValue);
}

需要注意的是,window.showModalDialog 方法已經(jīng)被廢棄,推薦使用 window.open 方法來替代。

0