window.dialogArguments是一個只讀屬性,它返回打開當前窗口的窗口的參數。這個屬性只在通過window.showModalDialog方法打開的模態對話框中才有值。
示例用法:
// 打開模態對話框
var dialogArgs = { name: "John", age: 30 };
var result = window.showModalDialog("dialog.html", dialogArgs);
// 在模態對話框中訪問傳遞的參數
console.log(window.dialogArguments.name); // 輸出 "John"
console.log(window.dialogArguments.age); // 輸出 30
注意:window.showModalDialog方法目前已經被棄用,不推薦使用。