我在 Chrome 中遇到了一个问题,我不知道这是 Chrome 的错误、jQuery 的错误还是我的代码中的错误。我搜索了 Chromium 的未解决问题,但找不到任何东西,同样使用 jQuery。我在这里创建了一个 JSFiddle(并将包括下面的代码以供后代使用):http: //jsfiddle.net/trmackenzie/cvPhd/4/
预期:当我单击单选按钮时,会在选项列表中选择指示的值。此外,如果我单击列表中的特定选项,则会取消选择所有单选按钮。
实际(在适用于 Windows 和 Mac 的 Chrome 21 中):第一次单击单选按钮时仅选择最后一个所需选项,然后后续单击不会导致任何事情发生。如果选择列表中的特定选项,则单选按钮保持选中状态。
实际(在 IE7、8、9 和 Firefox 中):与预期行为相同,例如正确行为。
请注意,选项上的“选定”属性设置正确,但 Chrome 停止显示其状态。
以下是 jsFiddle 中也可用的代码:
<!DOCTYPE HTML>
<html>
<head><title>Testing</title></head>
<body>
<select size="10" name="testList" multiple="multiple" id="testList_box" style="width:250px; float:left; margin-right:20px;">
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
<option value="4">Fourth</option>
<option value="5">Fifth</option>
</select>
<span id="columnSpecList">
<input type="radio" id="input1" name="spec" value="1" />
<label for="input1">Testing</label>
<input type="radio" id="input2" name="spec" value="1,2" />
<label for="input2">Testing</label>
<input type="radio" id="input3" name="spec" value="1,2,3" />
<label for="input3">Testing</label>
</span>
</body>
</html>
jQuery:
$(document).ready(function () {
var columnList = $('#testList_box');
var columnSpecList = $('#columnSpecList');
var columnSpecOptions = $('input', columnSpecList);
$(columnSpecOptions).click(function () {
var optionsToSelect = $(this).val().split(',');
// clear the list
$(':selected', columnList).removeProp('selected');
// select desired columns
$(optionsToSelect).each(function (index, value) {
$('[value=' + value + ']', columnList).prop('selected', 'true');
});
});
$(columnList).on(
{
click: deselectSpec,
change: deselectSpec
}
);
// simulate "click" of the selected option to load the initial values
var itemToClick = $(":checked", columnSpecList);
$(itemToClick).click();
function deselectSpec() {
$(columnSpecOptions).removeProp('checked');
}
});
我是否遇到过错误,或者(更有可能)我在某个地方的实现中遗漏了一些微妙之处?