如何覆盖jQuery样式?

时间:2014-06-11 16:01:45

标签: javascript jquery css

我正在使用jquery在可选列表之间移动项目。这是我的jquery代码

   listItems.fadeOut(function() {
    $(this)
      .removeClass("ui-selected")
      .clone()
      .appendTo("#target-list")
       .html( $(this).html() + '</a><a href="https://www.google.ie/" target="_blank"> Edit </a>' )
      .fadeIn()
      .data("index", $("#source-list li").index($(this)))
      .highlight();
  });

这会产生以下html

   <li id="1" class="ui-selectee ui-selected" style="display: list-item;">
   Everton
   <a class="ui-selectee" target="_blank" href="https://www.google.ie/">
    Search
   </a>
   </li>

这将不允许链接窗口打开,因为jquery正在应用&#34; ui-selectee&#34;上课到ahref。有办法解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

我明白了。我添加了这个。

   $("#target-list").selectable({
    cancel: 'a'
    });