发布网友 发布时间:2022-04-24 05:36
共4个回答
热心网友 时间:2023-11-23 10:28
局部刷新回调函数里加上文本框的focus()
热心网友 时间:2023-11-23 10:28
新jq是这么的吧...
$("#txtorder")[0].focus();
热心网友 时间:2023-11-23 10:29
function showOrder() {
document.getElementById("button1").disabled = true;
document.getElementById("button1").disabled = false;
$("#txtorder").focus();
}
<body onload="showOrder()">
给按钮失效一次,这样他总没有焦点了吧?
热心网友 时间:2023-11-23 10:29
button的点击函数里,文本框刷新后,再执行一个focus().