32 lines
743 B
HTML
32 lines
743 B
HTML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<dialog
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="保存网页快照"
|
|
buttons="accept,cancel"
|
|
onload="onLoad();"
|
|
ondialogaccept="return onAccept();"
|
|
>
|
|
<script>
|
|
function onLoad() {
|
|
document.getElementById("url-textbox").focus();
|
|
}
|
|
|
|
function onAccept() {
|
|
let url = document.getElementById("url-textbox").value;
|
|
if (!url) {
|
|
alert("请输入 URL");
|
|
return false;
|
|
}
|
|
|
|
window.arguments[0].callback(url);
|
|
return true;
|
|
}
|
|
</script>
|
|
|
|
<vbox>
|
|
<label value="请输入网页 URL:" />
|
|
<textbox id="url-textbox" width="400" />
|
|
</vbox>
|
|
</dialog>
|