问题描述
各位大牛,Web控件可以屏蔽这样的网页弹窗吗?用什么方法可以屏蔽呢,如果不能屏蔽用什么方法可以默认点击掉呢,我用了SendKeys.Send(“{enter}”)模拟回车键也不行呢
解决方案
解决方案二:
使用javascript为Web窗口加入关闭按钮//网页跳转页面设置<ahref="#"onClick="window.open('Default2.aspx','','width=550,height=500')"><spanstyle="font-size:9pt;text-decoration:none;color:red;;"><strong> </strong>福星管理系统</span></a>//设置关闭按钮<inputid="Button1"style="width:62px;height:21px;"type="button"value="关闭"onClick="window.close();"/>//运行javascript代码publicstaticvoidRunJs(stringScritpCode){stringjs=@"<Scriptlanguage='JavaScript'>"+ScriptCode+";</Script>"HttpContext.Current.Response.Write(js);}
解决方案三:
往网页中注入如下脚本window.alert=function(){}这样就不会出现消息框了。
解决方案四:
解决方案五:
引用2楼caozhy的回复:
往网页中注入如下脚本window.alert=function(){}这样就不会出现消息框了。
版主能否详细的说下呢,怎么注入这个脚本,本人是小菜
时间: 2024-09-10 10:48:49