Set focus on the first text field:
$("input:text:visible:first").focus();
This also does the first text field, but you can change the [0] to another index:
$('input[@type="text"]')[0].focus();
Or, you can use the ID:
$("#someTextBox").focus();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…