VB6怎么在webbrowser中运行JS代码?
比如我有一段js代码放在text1里面,然后我点击按钮在打开的网页中执行这段代码。在VB6该怎么做呢????...
比如我有一段js代码放在text1里面,然后我点击按钮在打开的网页中执行这段代码。在VB6该怎么做呢????
展开
1个回答
展开全部
HTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
//给script标签加js内容
element.text = "function sayHello() { alert('hello') }";
//将script标签添加到head标签中
head.AppendChild(scriptEl);
//执行js代码
webBrowser1.Document.InvokeScript("sayHello");
//给script标签加js内容
element.text = "function sayHello() { alert('hello') }";
//将script标签添加到head标签中
head.AppendChild(scriptEl);
//执行js代码
webBrowser1.Document.InvokeScript("sayHello");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询