输入密钥以使用提交按钮在表单字段之间移动。 我尝试了这段代码,但它没有用。 此代码使用enter键在表单字段之间移动: 它的工作没有提交按钮我应该做什么改变的朋友请帮帮我
<Script Language=JavaScript>
function toEOT(isField){
isRange = isField.createTextRange();
isRange.move('textedit');
isRange.select();
}
function actTab(isField){
if (event.keyCode == 13)
{
nextField = isField.tabIndex;
nextField++;
if (nextField < document.forms.Form1.length)
{document.forms.Form1[nextField].focus()}
else {document.forms.Form1[0].focus()}
}
}
function init(){
document.forms.Form1[0].focus();
}
event.preventDefault();
window.onload=init;
</Script><br>
</Head>
<Body>
<Form name='Form1'>
<fieldset>
<legend>Fills</legend>
<input type=text value="This is Some Text" size=25 onFocus="toEOT(this)" onKeyUp="actTab(this)" tabindex='1'><br>
<input type=text value="Some Text" size=25 onFocus="toEOT(this)" onKeyUp="actTab(this)" tabindex='2'><br>
<input type=text value="Nothing" size=25 onFocus="toEOT(this)" onKeyUp="actTab(this)" tabindex='3'><br>
<input type=text value="Two Words" size=25 onFocus="toEOT(this)" onKeyUp="actTab(this)" tabindex='4'><br>
<select >
<option>geetha</option>
<option>geetha</option>
<option>geetha</option>
</select>
<select >
<option>geetha</option>
<option>geetha</option>
<option>geetha</option>
</select>
<input type=text value="Two Words" size=25 /><br>
<input style="margin:20px 20px 20px 250px;" type="submit" name="Submit" value="Submit"/>
</fieldset>
</Form>
答案 0 :(得分:1)
添加onclick =“return false;”在提交按钮的输入标签中,然后输入wil引导您进入下一个控件。
<input style="margin:20px 20px 20px 250px;" type="submit" name="Submit" onclick="return false;" value="Submit"/>