我正在尝试为jQuery创建一个选项传输插件.
我有基本功能在opera,firefox,chrome&野生动物园,但IE7未能合作.
IE7中的传输功能似乎非常偶然且难以理解.
我创建了an example page to illustrate my problem.
任何人都可以看到我错在哪里?
谢谢,
解决方法
这看起来不像.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)修复.)