让元素在网页中可拖动

1.导入相应的JS类库:

  
  

2.带有id的div元素:

  

Drag me around!

3:设置div的样式:

		#draggable {
			width:150px;
			height:150px;
			padding:0.5em;
			border:1px solid;
		}

4:让元素可拖动:

  

效果请点击: http://jsfiddle.net/tounaobun/KS8JC/


源代码:

  
  
  
  
  
  
  
  

Drag me around!



你可能感兴趣的:(JQuery)