gpt4 book ai didi

windows - 从 IE 打开 Word 文档

转载 作者:可可西里 更新时间:2023-11-01 13:30:47 32 4
gpt4 key购买 nike

我在本地网络上通过 IE 打开一个 word 文档,它可以正常打开,但如果文档受密码保护,那么它应该提示输入密码,但实际上没有。

我应该做些什么来获得密码提示?

我打开文档的方式是通过网页上的链接,例如

<a href="\\path\to\file.doc">Document</a>

最佳答案

我使用以下 javascript/jQuery 得到了我想要的东西。jQuery 不是必需的,我使用它是因为我已经将它作为项目的一部分。

$('a.openDoc').live('click',function(){
var file = $(this).attr('href');

// This is what does the work.
try
{
try
{
// get Word Active-X Object if Word is open.
var word = GetObject('',"Word.Application");
}
catch(e)
{
// create new Word Active-X Object.
var word = new ActiveXObject("Word.Application");
}

word.Visible = true; // Make sure Word is visible.
word.Documents.Open(file); // Open the file you want.
}
catch(e)
{
alert(e.description);
}
// End work.

return false;
});

关于windows - 从 IE 打开 Word 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2728307/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com