当前在本地存储上工作,如果用户必须在第二页面板中选择第一个单选按钮,则在第一页中有两个单选按钮。而且,如果用户选择单选按钮,则不应在第二页验证中出现一个文本字段,我也不知道如何使用localStorage或ajax,哪一个是最好的
当我看到SO时得到了window.localStorage.setItem("key_name", "stringValue");
请指导我如何使用:
首页代码
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<meta charset="utf-8">
<title>First page</title>
</head>
<body>
<form id="first_pge" class="first_pge" action="second.page">
<input type="radio" name="radio" id="first_radio"/>
<input type="radio" name="radio" id="second_radio"/>
<input type="button" value="submit" id="btn_sub"/>
</form
</body>
</html>
第二页
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.14.0/jquery.validate.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.14.0/additional-methods.min.js"></script>
<script>
jQuery.validator.setDefaults({
debug: true,
success: "valid"
});
$("#myform").validate({
rules: {
field: {
required: true
}
}
});
</script>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
.div_panel {
background-color: yellow;
font-size: 16px;
}
</style>
</head>
<body>
<form id="myform" class="myform">
<div class="div_panel">First</div>
<div> </div>
<input type="text" id="field" class="field" />
<input type="button" required value="Submit" id="btn_sub1" />
</form>
</body>
</html>
目前根据以下用户使用jquery帮助了我。
在第一页中,我这样设置
storeData();
function storeData()
{
alert("check");
localStorage.setItem('pg', $('#basicForm #pg').attr('checked', 'checked'));
//alert("yes" + getd);
localStorage.setItem('cu', $('#basicForm #cu').attr('checked', 'checked'));
}
当我默认在第二页中进行设置时,如果用户直接打开第二页,则特定的div隐藏:(
请帮助我
if( localStorage.getItem('pg') )
{
$('#edu_info').hide();
}
最佳答案
看看 HTML5 Local Storage ,它真的很容易使用。
我认为您必须在表单中添加onsubmit()
并将所需的值存储在localstorage
中,在第二页中,您可以使用localstorage.getItem()
来获取它们。
在表单中添加onSubmit
事件,该事件将调用称为storeData()
的函数,该函数会将您的单选按钮值添加到localstorage
:
<form id="first_pge" class="first_pge" action="second.page" onsubmit="storeData()">
添加函数
storeData()
:<script>
function storeData()
{
localStorage.setItem('first_radio', $('#first_pge #first_radio').is(':checked'));
localStorage.setItem('second_radio', $('#first_pge #second_radio').is(':checked'));
}
</script>
现在,您拥有了两个 radio 的值,可以在第二页中使用
getItem()
来使用它们:if( localStorage.getItem('first_radio') )
{
$('.div_panel').hide();
}
这样,如果选中了第一页中的第一个收音机,则面板将被隐藏。
关于javascript - 如何使用localstorage/ajax jquery从第一页到第二页获取单选按钮值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33463016/