我的网站就像一个具有 2 种搜索类型的搜索引擎。类型 1 类型 2。当有人来到我的网站时,我只是不知道该怎么做,默认选中的类型是类型 1,如果它选择类型 2,那么即使页面被刷新,访问者仍然保持类型 2。我需要的正是来自这里的样本。
js
$(function() {
$( "#radio" ).buttonset();
});
html
<form>
<div id="radio">
<input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
<input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
</div>
</form>
我希望能够将checked="checked"从收音机切换到另一个或类似的东西。真的不知道。但我认为它必须用 php 或 javascript 做一些事情。