小编Mat*_*tej的帖子

如果我对一个可疑项目进行"jquery sortable",那么我就无法将鼠标聚焦在任何可疑文本中的任何地方了

奇怪的是,这只在Firefox和Opera中被破解(IE,Chrome和Safari可以正常工作).

有什么建议快速解决?

<html>
<head>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot; type="text/javascript"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js&quot; type="text/javascript"></script>
  <script>
  $(document).ready(function(){
      $('#sortable').sortable();
  });
  </script>
</head>
<body>
  <span id="sortable">
    <p contenteditable="true">One apple</p>
    <p>Two pears</p>
    <p>Three oranges</p>
  </span>
</body>
</html>

javascript jquery contenteditable jquery-ui-sortable

18
推荐指数
4
解决办法
9203
查看次数