有人可以指导我在java脚本中创建“另存为”对话框的代码,该对话框应该在IE中工作,而“另存为”类型应该是.bmp文件。 我有一个正在运行的代码,但这只适用于文本。这是我正在使用的代码。
<html>
<script type="text/javascript">
<!--
function save(){
str = document.forms[0].t1.value;
mydoc = document.open();
mydoc.write(str);
mydoc.execCommand("saveAs",true,".text");
mydoc.close();
return false;
}
//-->
</script>
</head>
<body class="body">
<form id="form1" action="" onsubmit="">
<input type="text" name="t1"/>
<input type="button" value="SaveAs" onclick="save()"/>
</form>
</html>
但这仅适用于我想要的.bmp文件。 有人可以帮助我。
先谢谢。