我正在尝试为jQuery创建一个选项传输插件。
我有基本的功能在opera,firefox,chrome&野生动物园,但IE7未能合作。
IE7中的传输功能似乎非常零星且难以理解。
我创建了an example page to illustrate my problem。
谁能看到我哪里出错了?
谢谢,
答案 0 :(得分:6)
这看起来不像.appendTo() - jQuery错误和IE7-has-superfunky-select-box-behavior问题一样多。这种解决方法似乎使其表现如下:
.parent()
.click(function () {
$selectBox1.find('option:selected')
.appendTo($selectBox2.find('select'));
$selectBox1.html($selectBox1.html());
$selectBox2.html($selectBox2.html());
sortBox($selectBox2);
})
在appendTo()强制IE更新其状态后,重建每个选择框的html。
JSbin:http://jsbin.com/opome3/4(第一个按钮用.clone(true)修复。)
答案 1 :(得分:1)
我在ie:
中收到错误行:16 错误:'undefined'为null或不是对象
指出这一点:
j=l.replace(/^[\-\d\.]+/,"")
我猜你需要测试null吗?只是一个猜测。