如果要注销并按F5几次,请不要设置焦点。
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function() {
var logonField = document.getElementById('UserName');
if (logonField) {
logonField.focus();
logonField.click();
}
}, 200);
});
</script>
<%= Html.TextBoxFor(m => m.UserName, new { @class = "logonField", style = "width:100px;"})%><br/>
<%= Html.ValidationMessageFor(m => m.UserName) %>
答案 0 :(得分:0)
您可以使用简单的Java脚本来调用
关于加载事件 html body。