简体   繁体   中英

jQuery sortable IE issue

Running into an issue with a simple implementation of jQuery's sortable in IE9 only. I have an ordered list with jQuery's sortable on it. When I drag and drop one of the items into a new position all the numbers change to that number.

Has anyone run into this issue before? I can't seem to track down any leads.

Using jQuery 1.7.1 & jQuery UI 1.8.13

My markup looks like:

<div id="movieList">
     <div class="col">
          <ol>
              <li id="" class="add" style="">
                   <span>Select Movie</span>
              </li>
              <li id="" class="add" style="">
                   <span>Select Movie</span>
              </li>
              <li id="" class="add" style="">
                   <span>Select Movie</span>
              </li>
              <li id="" class="add" style="">
                   <span>Select Movie</span>
              </li>
              <li id="" class="add" style="">
                   <span>Select Movie</span>
              </li>
          </ol>
     </div>
</div>

The JavaScript I have implemented is:

$('#movieList .col ol').sortable();
$('#movieList .col ol').disableSelection();

I uploaded a couple images of the results here: http://imgur.com/a/UveVq

Thanks in advanced, Smccullough

Here is your code running on jsbin.com. I tested in IE 9 and it works fine. http://jsbin.com/elegig/4 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM