如何在 iframe 中设置检查输入?网络浏览器 C#
How set checked on input in iframe? Webbrowser C#
我想在 iframe 中设置属性 "checked"。
我尝试为此使用 InvokeScript。
string jCode = "$(\"iframe\").contents().find(\".checkbox - class\")
.prop("checked", true)";
webBrowser.Document.InvokeScript("eval", new object[] { jCode });
我看到错误:访问被拒绝。
据我所知这是因为我正在尝试更改跨域 iframe HTTPS。网络浏览器 C#。如何设置检查 iframe 中的输入?
假设您有一个网站,任何未经授权的人都可以使用简单的 iframe 元素通过跨域 javascript 功能劫持用户会话。
你想做的是安全漏洞,任何体面的安全浏览器都不允许这样做。
我想在 iframe 中设置属性 "checked"。 我尝试为此使用 InvokeScript。
string jCode = "$(\"iframe\").contents().find(\".checkbox - class\")
.prop("checked", true)";
webBrowser.Document.InvokeScript("eval", new object[] { jCode });
我看到错误:访问被拒绝。 据我所知这是因为我正在尝试更改跨域 iframe HTTPS。网络浏览器 C#。如何设置检查 iframe 中的输入?
假设您有一个网站,任何未经授权的人都可以使用简单的 iframe 元素通过跨域 javascript 功能劫持用户会话。
你想做的是安全漏洞,任何体面的安全浏览器都不允许这样做。