我只是想知道 - 在调试Visual Studio 2017中的代码时,调试器在document.writeln(x)上停止;说 - JavaScript运行时错误:权限被拒绝。脚本需要什么样的权限才能将行写入文件?特别是当脚本在浏览器中运行时。任何建议我都很高兴。
function Checking(){
let x = parseInt(document.getElementById('beginning').value);
let y = parseInt(document.getElementById('ending').value);
let i = 1;
let z = y - x;
for (i; i < z; i++)
{
if ((x % 11 === 0 && x % 6 !== 0) || (x % 15 === 0 && x % 8 === 0))
{
document.writeln(x);
x++;
}
else
{
x++;
}
}