刷新后注入JavaScript

时间:2015-10-27 17:53:51

标签: javascript c# refresh

我想在网站刷新后我的脚本工作。我有注入webbrowser的JavaScript代码。

string element = "alert(\"hello\")";
 form1.webBrowser1.Document.InvokeScript("eval", new object[] { element });

1 个答案:

答案 0 :(得分:0)

here无耻地被盗:

“你不想刷新,你想要onbeforeunload事件。

http://msdn.microsoft.com/en-us/library/ms536907(VS.85).aspx

文章“

中的示例代码
<HTML>
<head>
<script>
function closeIt()
{
  return "Any string value here forces a dialog box to \n" + 
         "appear before closing the window.";
}
window.onbeforeunload = closeIt;
</script>
</head>
<body>
  <a href="http://www.microsoft.com">Click here to navigate to 
      www.microsoft.com</a>
</body>
</html>