Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在设计一个 Qualtrics 调查,其中包括文本输入问题(有一个字段,受访者必须输入文本)。我的问题是,每次受访者加载带有文本输入字段的页面时,他必须先单击它才能输入任何内容。有什么方法可以设计页面,让受访者可以直接开始输入,而无需先单击文本输入字段?
本着同样的精神,我可以让受访者按 Enter 键进入下一个问题吗?
1)您可以使用$('#firstInput').focus();,以便在页面加载时第一个元素成为焦点。2)检查按下了什么键:
$('#firstInput').focus();
$('#firstInput').keypress(function(){ if (event.which == 13) { $('#secondInput').focus(); } });