我正在尝试为我网站的所有网页设置默认焦点,但不会更改页面重新加载的重点。
我的意思是:
我目前的代码如下:
$(document).ready(function() {
if($(':focus').length === 0) {
$(':input:not([type="hidden"]):first').focus();
}
});
每次条件都是真的!
答案 0 :(得分:2)
$(document).ready({
window.onload=function(){
if(session.Storage.getItem("text3")){//if key= text3 is set,then change the focus to 3rd text box.
$('#your3rdTextID').focus();
}
$('#your3rdTextID').focus(function(){
session.Storaage.setItem("text3","selected")//here you set the key as text3 and value as selected for later use.
});
});
您可以提供自己的自定义条件。这只是一个小例子。希望它帮助您。祝您的项目好运。
LINK - > HTML5 Local storage vs. Session storage
LINK - > http://www.w3schools.com/html/html5_webstorage.asp
答案 1 :(得分:2)
这将有效(在最新的Chrome,IE7和IE10中测试过)。设置焦点上的cookie记住最后一个聚焦元素,如果没有,则默认为第一个。它依赖于jquery.cookie.js(usage explained in this SO answer)。以下是最小工作示例的完整HTML + JS源代码。考虑更改cookie名称和输入选择器(当前为'input'
):
<!doctype html>
<html>
<head>
<title>focus test</title>
<meta charset="utf-8" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var $input = $('input'), // get all the inputs
cookieName = 'lastInputFocusIndex', // for consistency
lastIndex = $.cookie(cookieName) || 0; // get the last known index, otherwise default to zero
$input.on('focus',function(){ // when any of the selected inputs are focused
if ( $(this).attr('type') !== 'submit' ) {
$.cookie(cookieName,$input.index(this)); // get their index in the $input list and store it
}
});
$input.eq(lastIndex).focus(); // when the page loads, auto focus on the last known index (or the default of 0)
});
</script>
</head>
<body>
<form method="get" action="">
<p><input type="text" name="first" /></p>
<p><input type="text" name="second" /></p>
<p><input type="text" name="third" /></p>
<p><input type="submit" value="Go" /></p>
</form>
</body>
</html>
或者,你可以编写自己的原始cookie而不是使用cookie helper jQuery插件;我用它来简化事情。