所以,我试图运行此代码
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');};
我的问题是,我做错了什么?为什么这个功能没有运行?