在我无法控制的页面上生成的代码包含警报。是否有 jQuery 或其他方法来禁用 alert() 工作?
我要禁用/修改的正在生成的 javascript 是:
function fndropdownurl(val)
1317 { var target_url
1318 target_url = document.getElementById(val).value;
1319 if (target_url == 0)
1320 {
1321 alert("Please Select from DropDown")
1322 }
1323 else
1324 {
1325 window.open(target_url);
1326 return;
1327 }
1328 }
我想禁用第 1321 行的警报
谢谢