使用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>
我希望可以拖放图像并具有超链接功能。