0

我在 Javascript 中使用 Excel 对象并使用 javascript 打开和关闭 excel 文件。

在这里,当我关闭 excel 对象并将 Excel 对象设置为 null 时。

它不会删除 Windows 任务管理器中的 excel 对象。一旦我刷新我的页面,那么只有它被删除。

在我要使用的代码下方

ExcelObject.ActiveWorkBook.Close();
ExcelObject.Application.Quit();
ExcelObject = null;

有什么建议么?

谢谢

4

1 回答 1

1

试试下面的代码......它强制终止在taskmanager中运行的进程......

<html>
<head>
<script>
function Sam()
{
var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("taskkill /F /IM EXCEL.exe"); //here i terminate the Excel...
}
</script>
</head>
<body>
<input type="Button" Value="Kill" onclick="Sam();"/>
</body>
</html>
于 2013-01-23T11:11:58.747 回答