我有一個產品選擇頁面,您可以在其中選擇一個計劃,並且一旦選擇它,就會在div中顯示選擇信息。問題是如果頁面被刷新,彙總div消失,但它會記住你的表單選擇。我怎樣才能得到它,所以它還記得總結?表格選擇處理
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<script>
$(document).ready(function(){
$("div.plan").hide();
$("input[type=radio]").click(function(){
$("div.plan").hide();
$("div[planid=" + $(this).val() +"]").show();
});
});
</script>
<input type="radio" name="plan" value="1" /> Plan 1 <br />
<input type="radio" name="plan" value="2" /> Plan 2 <br />
<input type="radio" name="plan" value="3" /> Plan 3 <br />
<div class="plan" planid="1">Plan 1 details</div>
<div class="plan" planid="2">Plan 2 details</div>
<div class="plan" planid="3">Plan 3 details</div>
</body>
</html>
謝謝你完美的工作,並感謝對屬性的頭像。 – Johnny 2010-11-04 22:20:09