jQuery UI拖拽信息到Table表格特效

jQuery UI拖拽信息到Table表格特效-精品资源网
jQuery UI拖拽信息到Table表格特效
此内容为免费资源,请登录后查看
0
免费资源

jQuery UI拖拽信息到Table表格特效

jQuery UI拖拽到Table表格特效是一款把想要的信息拖拽到表格里面特效下载。

js代码

<script type=\"text/javascript\" language=\"javascript\">
   //在页面加载完之后加载jquery
   $().ready(function(e) {
       //拖拽复制体
       $(\'td[id^=\"draggable\"]\').draggable({
		   helper:\"clone\",
		   cursor: \"move\"
		 });

		//释放后
	   $(\'td[id^=\"target\"]\').droppable({
			drop:function(event,ui){
				$(this).children().remove();
				var source = ui.draggable.clone();
				$(\'<img/>\', {
					src: \'btn_delete.png\',
					style:\'display:none\',
					click: function() {
					  source.remove();
					}
				}).appendTo(source);

			
				source.mouseenter(function () { 
					$(this).find(\"img\").show();
				}); 

				source.mouseleave(function () {
					$(this).find(\"img\").hide();
				}); 

				$(this).append(source);

			}
		});
     });
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容