文章列表
var newDiv=document.createElemen("DIV");
newDiv.style.float="left";
//在firefox中是不管用的,因为查看生成的静态页面属性style="float:left;"没有加载到对应的div中
newDiv.style.styleFloat // ie
newDiv.style.cssFloat //其他
也可以这样解决:
后来就把该属性写在css中
.titleDiv{
float:left;
}
然后
newDiv.className ...
拖拽时候碰到其他div会交换位置,碰到多个div,自动选择重合面积最大的div进行交换。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Conte ...