以下google脚本创建了一个小型网站(从https://developers.google.com/apps-script/guides/html/templates复制)
function doGet() {
return HtmlService
.createTemplateFromFile('index.html')
.evaluate();
}
相应的index.html(从https://www.w3schools.com/tags/att_button_autofocus.asp复制)
<!DOCTYPE html>
<html>
<body>
<button type="button" autofocus onclick="alert('Hello world!')">Click Me!</button>
<p><strong>Note:</strong> The autofocus attribute of the button tag is not supported in IE 9 and earlier versions.</p>
</body>
</html>
当我加载网站时,我希望按钮能够集中显示并在按ENTER键时显示“ Hello world”。但是按钮不是 焦点,我需要用鼠标单击该按钮。我需要更改什么才能使自动对焦属性起作用?
PS:大约一年前就可以使用
答案 0 :(得分:1)
我确认使用autofocus
时发生了Blocked autofocusing on a form control in a cross-origin subframe.
错误。发现由此不能使按钮聚焦。不幸的是,在这种情况下,我找不到使用autofocus
的方法。因此,为了避免出现此问题,该解决方法如何?请认为这只是几个答案之一。
在此替代方法中,使用focus()
。
<!DOCTYPE html>
<html>
<body>
<button type="button" id="button" onclick="alert('Hello world!')">Click Me!</button> <!-- Modified -->
<p><strong>Note:</strong> The autofocus attribute of the button tag is not supported in IE 9 and earlier versions.</p>
<script>
document.getElementById('button').focus(); // Added
</script>
</body>
</html>
如果这不是您想要的方向,我深表歉意。