我正在尝试开发一种工具来使用js从我们学校的网站预订课程。
但是我遇到这个问题:
当学生人数达到最大人数时,网站将显示一个警报,停止我的代码运行。
我尝试过使用此方法将其关闭:
window.alert=function(){return true};
但这不起作用。
以下是我假装单击添加列表按钮后可以激活的功能。
那我该如何解决这个问题?
答案 0 :(得分:0)
免责声明:这是AWFUL的做法。但是,如果您对现有代码感到厌烦,那么有时您必须这样做。
//the following code suppresses the first alert on the website
var originalAlert = window.alert;
window.alert = function() {
window.alert = originalAlert;
};