我有一个用户脚本,它必须根据选择中的 1 个选项更改整个选项列表。在 Opera 中这个脚本运行良好,但在 Chrome 中不行(是的,jQuery 可用)。
HTML:
<select id="autoConfig-gametype" style="width: 100%;">
<option value="1" selected="">1. [RECOMMENDED] All latest Game-settings, Paladin, archers, simple tech smithy</option>
<option value="2">2. No paladin, archers, simple tech system [TWMASTERS Settings]</option>
<option value="3">3. No paladin, no archers. Packages, 3 lvl tech-system. [CLASSIC]</option>
</select>
<select name="game::tech">
<option value="0">0: 10 level</option>
<option value="1">1: 3 level (up to 15)</option>
<option value="2" selected="selected">2: Simple</option>
</select>
使用 jQuery,我使用了attr
and prop
,但在 Chrome 中都没有结果。需要操作的选择不会改变。
jQuery:
$("#autoConfig-gametype").change(function()
{
var value = $(this).val();
switch(value)
{
case "1":
// Game > Tech
$("[name='game::tech'] option").removeProp("selected");
$("[name='game::tech'] option").removeAttr("selected");
$("[name='game::tech'] option:eq(0)").attr("selected",true);
$("[name='game::tech'] option:eq(0)").prop("selected",true);
break;
case "2":
// Game > Tech
$("[name='game::tech'] option").removeProp("selected");
$("[name='game::tech'] option").removeAttr("selected");
$("[name='game::tech'] option:eq(1)").attr("selected",true);
$("[name='game::tech'] option:eq(1)").prop("selected",true);
break;
case "3":
// Game > Tech
$("[name='game::tech'] option").removeProp("selected");
$("[name='game::tech'] option").removeAttr("selected");
$("[name='game::tech'] option:eq(2)").attr("selected",true);
$("[name='game::tech'] option:eq(2)").prop("selected",true);
break;
}
});
我现在有点卡在这里,因为我正在为只使用 Chrome 的人制作这个脚本。