所以,我正在尝试运行此代码
document.location = "https://stackoverflow.com/questions/ask";
document.onload = function(){document.getElementById("title").value="My question";};
但事实证明我的函数不运行该函数。你可以通过这样做来观察
document.location = "https://stackoverflow.com/questions/ask";
document.onload = function(){document.getElementById("title").value="My question";alert('Hi');};
我的问题是,我做错了什么?为什么函数不运行?