如何使用 jQuery 将选项插入到 SELECT 中——跨平台,甚至 IE6
我需要一种跨平台的方法来使用 jQuery 将选项插入到 SELECT 中。我想我记得过去,当调用此方法时,IE6 不执行任何操作:
<select id="myselect" size="1">
<option value=""></option>
</select>
<script type="text/javascript">
$('#myselect').append('<option value="test1">test1</option>');
$('#myselect').append('<option value="test2">test2</option>');
</script>
我想我记得上面的内容适用于所有浏览器以及 Firefox 2+ 和 IE7+,但不适用于 IE6。这是正确的吗?如果是这样,解决方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您不需要等待 DOM 准备好您的代码。您应该将 jQuery 代码包装在:
我不确定 IE6 兼容性,但您可以尝试使用 .appendTo 函数,例如:
example:
http://jsfiddle.net/W6L9d/
First off, you aren't waiting for the DOM to be ready with your code. You should be wrapping your jQuery code in:
I'm not sure about IE6 compatibility, but you could try the .appendTo function instead, such as:
example:
http://jsfiddle.net/W6L9d/
JavaScript 是跨平台的,甚至是 IE6。
要测试它在 IE6 中的外观,请打开 Internet Explorer 浏览器(存在于 Windows 10 中,不是 Edge 浏览器)并使用 F12 键盘按钮(开发人员工具) ),然后在调试菜单中选择最后一个按钮 - 仿真 - 在那里您可以看到它在 IE6、IE7、IE8、IE9、IE10 等中的工作原理。
测试 IE6 的全屏示例在这里:http://jsfiddle .net/3Qv6P/embedded/result/
如果我选择美国或加拿大,请查看如何动态更改州列表
示例:http://jsfiddle.net/3Qv6P/
示例:http://jsfiddle.net/3Qv6P/
JavaScript is Cross-Platform, Even IE6.
To test how it looks in IE6 open Internet Explorer Browser (exist in Windows 10, it is not Edge Browser) and use F12 keyboard button (Developer tools), and in debug menu choose last button - Emulation - there you can see how it works in IE6, IE7, IE8, IE9, IE10 etc.
The full screen example to test IE6 here: http://jsfiddle.net/3Qv6P/embedded/result/
See how dynamically is changing the list of states if I choose the US or Canada
example: http://jsfiddle.net/3Qv6P/
example: http://jsfiddle.net/3Qv6P/