我有两个单选按钮,即用户和组。
如果选择组并刷新浏览器,它将保留在组中。
当我提供 ctrl + f5 时,它会重置为用户。
我的需求是:
While i click the refresh button in browser the radio button should be reset to users even it is selected as groups.
编辑:代码
$form['groups'] = array(
'#title' => t('Groups'),
'#type' => 'select',
'#multiple' => 3,
'#options' => $options,
);
$form['users'] = array(
'#type' => 'textfield',
'#title' => t('Users'),
'#description' => t('Separate multiple names with commas.'),
'#default_value' => '',
);
这是使用drupal和jquery开发的任务..
任何有关此事的帮助都将非常感激和感激......
提前致谢...
答案 0 :(得分:2)
你可以试试这个:
<html>
<head>
</head>
<body onload="clearItForm.reset();">
<form name="clearItForm">
<input type="radio" name="sweets">Ice Cream<br>
<input type="radio" name="sweets">Candy Bars<br>
<input type="radio" name="sweets">Milk Shakes<br>
</form>
</body>
</html>
答案 1 :(得分:2)
Robby Shaw的另一个好办法是在一些JavaScript中重置html之外的表格。
window.onload = function(){
clearItForm.reset();
}