腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(580)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
4
回答
为什么微软有
IHTMLDocument
,
IHTMLDocument
2,...,
IHTMLDocument
8?
我看到
IHTMLDocument
3-7没有成员(),而8有与手势相关的成员。该数字是从Windows版本派生的吗?
浏览 1
修改于2013-01-17
得票数 7
回答已采纳
1
回答
IHTMLDocument
2 /
IHTMLDocument
3帧计数不同
如果我访问(例如) 并转到登录页面,使用
IHTMLDocument
2.frames.length将返回1,即使不存在iframe。不出所料,
IHTMLDocument
3.getElementsByName("iframe").length返回0。 这似乎只发生在IE9上。
浏览 1
修改于2013-07-27
得票数 0
回答已采纳
1
回答
IHTMLDocument
2.write()
我正在编写一个应用程序来检查we页面上的一些数据,所以我尝试在
IHTMLDocument
2中编写整个html,但是程序锁定在write()方法上。我的意思是它不会停止,它只是锁住了。userA, cType, "POST", cookie);cookie = (CookieContainer)result[1];
IHTMLDocument
2
浏览 1
修改于2012-03-01
得票数 1
1
回答
使用
IHTMLDocument
强制加粗
我可以切换粗体状态,如下所示:我可以像下面这样获取粗体状态:现在,你当然会说,嗯,只需获取粗体状态,然后在需要时切换它。
浏览 5
提问于2012-02-07
得票数 0
1
回答
"getElementsByClassName“(
IHTMLDocument
3 )
在我的BHO (COM DLL)中,我使用
IHTMLDocument
3 3的getElementById和getElementsByName api通过'id‘和'name’获得元素,我需要通过class但是我必须找到任何带有getElementsByClassName的
IHTMLDocument
3 api。我需要用“类”来获取元素。如何使用
IHTMLDocument
3获取“class”的集合元素?
浏览 1
修改于2013-09-17
得票数 1
1
回答
为什么
IHTMLDocument
2不等于
IHTMLDocument
2.body.document?
IHTMLDocument
2 doc2 = (pDisp as IWebBrowser2).Document as
IHTMLDocument
2;bool isequal = Marshal.GetIUnknownForObject(doc2) == Marshal.GetIUnknownForObject
浏览 6
修改于2011-11-02
得票数 0
4
回答
如何释放
IHTMLDocument
占用的内存?
有没有办法在使用
IHTMLDocument
(
IHTMLDocument
2)后释放内存?目前我正在使用函数,但我觉得这不是一个好方法即使释放TWebBrowser也无济于事;问题似乎出在没有从内存中释放的
IHTMLDocument
MSHTML, SHDocVw; TForm1 = class(TForm) WebBrowser: TWebBrowser; HTMLDocument:
IHTMLDocument
浏览 0
修改于2011-05-19
得票数 4
回答已采纳
1
回答
通过
IHTMLDocument
2和C++更改div
IHTMLDocument
2
我试图通过这种方式使用
IHTMLDocument
2接口更改div的内容: IDispatch* mydiv
浏览 5
提问于2017-09-19
得票数 2
回答已采纳
4
回答
无法使用
IHTMLDocument
2
DownloadString = $wc.DownloadString("http://www.example.com")$HTML.
IHTMLDocument
2__ComObject不包含名为“
IHTMLDocument
2 2_write”的方法。 后来的话..。
浏览 16
修改于2018-01-10
得票数 6
回答已采纳
1
回答
用于
IHTMLDocument
2的空闲内存
我使用
IHTMLDocument
2作为如下内容: doc: OleVariant; doc:=CreateComObject(Class_HTMLDOcument) as
IHTMLDocument
2;doc.close; (...)
浏览 2
提问于2014-12-06
得票数 1
回答已采纳
2
回答
IHtmlDocument
-如何订阅自定义javascript事件
我有一个名为browser的IWebBrowser2对象,从中我可以获得一个如下所示的
IHtmlDocument
2对象: var document = browser.Document as
IHTMLDocument
2
浏览 3
修改于2014-10-31
得票数 0
1
回答
IHTMLDocument
--按ID而不是名称单击IHTMLElement
我正在尝试这样的东西:((mshtml.IHTMLElement
浏览 3
提问于2012-06-08
得票数 1
回答已采纳
1
回答
使用webbrowser
IHTMLDocument
界面保存网页内容
我们需要保存完整的网页,包括img,javascript,css和html使用ATL网页浏览器(
IHTMLDocument
)控制, 使用
IHTMLDocument
2::get_all()方法我们已经保存了
浏览 2
提问于2009-12-11
得票数 0
1
回答
HTML :通过
IHTMLDocument
添加注释
对于这个任务,我已经将HTML加载到一个HTMLDocument对象中,但我不知道如何继续:doc.CreateInstance
浏览 4
修改于2010-04-15
得票数 1
回答已采纳
2
回答
IHTMLDocument
2::write()的问题
language=\"JavaScript\">{top.location.href=\"index.php\"}</script></head><body></body></html>"); HRESULT hr = CoCreateInstance(CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER, I
浏览 2
修改于2009-04-13
得票数 4
2
回答
如何从
IHTMLDocument
2获取所有mshtml.IHTMLDivElement?
如何从
IHTMLDocument
2获取所有mshtml.IHTMLDivElement?private mshtml.
IHTMLDocument
2 doc = (
IHTMLDocument
2)WPFBrowser.Document; ???
浏览 2
提问于2012-02-10
得票数 2
回答已采纳
1
回答
如何使用
IHTMLDocument
3::attachEvent
我在C++中找不到任何使用
IHTMLDocument
3::attachEvent的示例。
浏览 3
提问于2012-09-29
得票数 0
回答已采纳
1
回答
将
IHTMLDocument
2实例分配给TWebBrowser实例
我正在使用
IHTMLDocument
2接口的一个实例来解析一些HTML,如本文所述: DelphiInterface<
IHTMLDocument
2> diDoc2; HRESULT hr= CoCreateInstance(CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER, IID_
IHTMLDocument
2, (LPVOID*)&diDoc2可以将上面已经解析的
IHTMLDocument
2直接分配给包含在TWebBrowser中的
浏览 6
修改于2021-10-13
得票数 0
回答已采纳
1
回答
无对话框的
IHTMLDocument
2打印
按照建议,我发现自己使用
IHTMLDocument
2进行打印。我应该能够:doc.write(htmlContent
浏览 3
修改于2012-11-12
得票数 3
2
回答
如何使用VBA访问WebPage (
IHTMLDocument
?)
使用以下代码,我可以打开Internet Explorer窗口并导航到该网站。我想更进一步,能够通过其中一个链接(如"Boxing/UFC")点击代码。Set IE = CreateObject("InternetExplorer.Application") .Visible = True Do Until .ReadyState = 4: DoEvents: LoopEnd With 因
浏览 1
修改于2018-07-10
得票数 3
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券