0

在我试图登录的网页中间,我有以下代码

   <tr>
   <td colspan="2" align="center"><!--mstheme--><font face="Trebuchet MS, Arial, Helvetica">

       <br>
       <a href="javascript:SubmitAction()">
          <IMG SRC="images/logon.gif" WIDTH="47" HEIGHT="43" NATURALSIZEFLAG="3" BORDER="0">
       </a>


   <!--mstheme--></font></td>

我想执行 SubmitAction() 代码,它将获取我的凭据并让我登录。使用 .NET 中的 WebBrowser 工作正常,因为我可以使用“invokescript”。我不能用 shdocvw 做到这一点。如何单击或以其他方式使此操作发生,尤其是因为该元素没有 id 或标签?

这是我的功能目前的样子:

        private void webBrowser1_DocumentCompleted(object pDisp, ref object URL)
    {
        while (webBrowser.ReadyState < SHDocVw.tagREADYSTATE.READYSTATE_LOADED) { }
        //we are attempting to log in
        if (loggingIn)
        {
            mshtml.HTMLDocumentClass doc = webBrowser.Document as mshtml.HTMLDocumentClass;                
            doc.getElementById("Username").setAttribute("value", "MLAPAGLIA");
            doc.getElementById("Password").setAttribute("value", "PASSWORD");

            mshtml.IHTMLWindow2 win = doc.parentWindow as mshtml.IHTMLWindow2;
            win.execScript("SubmitAction()", "javascript");

            loggingIn = false;
            return;
        }
4

2 回答 2

1
<a href="#" onclick="SubmitAction();return(false);">

这不是执行此操作的理想方法,使用事件侦听器是一种更好的做法。

在 JQuery 中它会是

    <a href="#" id="someid">

$('#someid').bind("click", function() { .. do whatever });

这样你就不会纠缠你的代码逻辑和你的语义标记。

于 2011-08-20T02:33:44.937 回答
1

尝试(评论后编辑):

using SHDocVw;
using mshtml;


SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorer();
ie.Visible = true;
object o = new object();
ie.Navigate("http://www.google.com", ref o, ref o, ref o, ref o);

while (!(ie.ReadyState >= tagREADYSTATE.READYSTATE_LOADED))
       Application.DoEvents();

var doc = ie.Document;

var win = (IHTMLWindow2)doc.parentWindow;
// here you call the Javascript
win.execScript("SubmitAction();", "javascript");

一些有趣的链接:

于 2011-08-20T02:43:00.540 回答