我想在网站刷新后我的脚本工作。我有注入webbrowser的JavaScript代码。
string element = "alert(\"hello\")";
form1.webBrowser1.Document.InvokeScript("eval", new object[] { element });
答案 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>