easyUI(4)droppable组件

html>
<head>
<title>jQuery Easy UI</title>
<meta charset="UTF-8" />
<script type="text/javascript" src="easyui/jquery.min.js"></script>
<script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>
<script type="text/javascript" src="easyui/locale/easyui-lang-zh_CN.js" ></script>
<script type="text/javascript" src="js/index.js"></script>
<link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css" />
<link rel="stylesheet" type="text/css" href="easyui/themes/icon.css" />
</head>
<body>
	<div id="box"  class=""  style="background:black;width:600px;height:400px;">
			
	</div>
</body>
</html>

$(function () {
		$("#box").droppable({
			accept:'#box,#pox'	//指定可以接受放置的组件
			disabled : true, //设置为true的时候则 禁止放置
			
			//被拖动元素经过放置区时触发
			onDragOver :function(e,source){
			
			}
			 //被拖拽的元素到放置区域时触发
			onDragEnter: function(e,source){
				
			}
			//被拖拽的元素离开放置区域时触发
			onDragLeave:function(){
				
				
			}
			//被拖拽的元素放入放置区域的时候触发
			onDrop:function(){
				
			}
		})
});

//返回属性对象
console.log($('#box').droggable('options'));
//禁止放置
$('#box').draggable('disable');
$('#box').draggable('enable');
//我们可以使用$.fn.droppable.defaults 重写默认值对象。
$.fn.droppable.defaults.disabled = true;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值