- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
谁能告诉我如何让这个脚本在 IE 7 中运行?当我运行它时,没有任何反应。
<html>
<head>
<script language="JavaScript">
function moveSelectedOption() {
// Fetch references to the <select> elements.
var origin = document.getElementById('origin_select');
var target = document.getElementById('target_select');
// Fetch the selected option and clone it.
var option = origin.options[origin.selectedIndex];
var copy = option.cloneNode(true);
// Add the clone to the target element.
target.add(copy, null);
}
</script>
</head>
<body>
<select id="origin_select" multiple>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
<select id="target_select" multiple>
<option value="C1">C1</option>
</select>
<button onclick="moveSelectedOption()">Add</button>
<!-- <input type="button" onClick="moveSelectedOption()" value="AddMeToo" /> this does not work either-->
</body>
</html>
最佳答案
首先,你不能使用add(option, null)
在 IE-up-to-7 由于错误(你得到“类型不匹配”)。您将不得不使用 add(option)
,但这当然是非标准的并且在其他地方中断。所以为了安全起见,使用select.add(option, options.length)
, 或 select.options[options.length]= option
.
接下来,由于另一个错误(你得到“无效参数”),当该选项已经在 IE-up-to-7 中的选择中时(即使在克隆之后!),你不能向选择添加选项. IE对<option>
的处理elements 在很多方面都是关闭的,其来源是 IE 的选择框是 native Windows 小部件,而不是浏览器实现的对象。因此,IE 的 HTMLOptionElement 接口(interface)只是一个外观,经常会出错。
处理选项元素的安全方法是每次都重新创建它们,或者使用 document.createElement
并写下 value
和 text
属性,或使用老派 new Option()
rahul 的回答中的构造函数。
最后,你不应该使用 selectedIndex
在 <select multiple>
上.由于不一定存在唯一且唯一的选择,因此它在任何浏览器中都没有意义。 (例如,在没有选择的情况下单击 Add
按钮会产生错误。)相反,遍历所有选项并复制每个选项 .selected
。 .
关于JavaScript 函数在 IE 7 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2606820/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!