jQuery UI droppable:如何将超链接插入可放置图像?

时间:2019-04-16 17:09:24

标签: javascript html css jquery-ui-droppable

使用jQuery UI可投放代码。我想在可投放图片中插入超链接。我的代码与原始代码完全相似。 droppable

我尝试将超链接元素插入li元素,但是不起作用。

<ul id="gallery" class="gallery ui-helper-reset ui-helper-clearfix">
      <li class="ui-widget-content ui-corner-tr">
        <a href="https://stackoverflow.com/questions/9376559/how-to-add-a-simple-hyperlink-to-images-using-jquery-wrapper"><!-- I put hyperlink here. -->
          <h5 class="ui-widget-header">High Tatras</h5>
          <img src="create_thumb.png" alt="The peaks of High Tatras" width="96" height="72">
          <a href="create_thumb.png" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
          <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>
        </a>
      </li>
...
</ul>

我希望可以拖放图像并具有超链接功能。

0 个答案:

没有答案