如何捕获“JavaScript SetCookie 事件”在网络浏览器中?
如何在浏览器中捕获“JavaScript SetCookie 事件”?我想当 javascript setcookie 事件同时发生时将 cookie 同步到 CookieContainer。 例如
<script>document.cookie="testcookie"</script>
是否有与此相关的事件?谢谢。
环境:.Net 2.0 Web浏览器、C#、VS2008
How to capture the "JavaScript SetCookie event" in a WebBrowser? I want to synchronize the cookie to a CookieContainer when a javascript setcookie event occurred simultaneously.
such as
<script>document.cookie="testcookie"</script>
Is there an event related to this ? thanks.
Environment: .Net 2.0 WebBrowser, C#, VS2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。分配
document.cookie
时不会引发任何事件。No. There is no event that is raised when
document.cookie
is assigned.