JavaScript設定元素float浮動

antzone發表於2018-05-22

本章節分享一段程式碼例項,它實現了動態設定元素float屬性值的效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#antzone {
  width:200px;
  height:100px;
  background:green;
}
</style>
<script>
function setFloatStyle(obj, style) {
  var sty = obj.style;
  if ('cssFloat' in sty) {
    obj.style.cssFloat = style;
  } else if ('styleFloat' in sty) {
    obj.style.styleFloat = style;
  } else {
    throw 'set float style:' + style + 'error.';
  }
}
window.onload = function () {
  var obt = document.getElementById("bt");
  var odiv = document.getElementById("antzone");
  obt.onclick = function () {
    setFloatStyle(odiv,"right");
  }
}
</script>
</head>
<body>
<input type="button" id="bt" value="檢視效果"/>
<div id="antzone"></div>
</body>
</html>

上面的程式碼實現了設定元素浮動的效果,下面對程式碼做一下簡單介紹。

[JavaScript] 純文字檢視 複製程式碼
function setFloatStyle(obj, style) {
  var sty = obj.style;
  if ('cssFloat' in sty) {
    obj.style.cssFloat = style;
  } else if ('styleFloat' in sty) {
    obj.style.styleFloat = style;
  } else {
    throw 'set float style:' + style + 'error.';
  }
}

上面的程式碼是為了實現瀏覽器相容效果,相容性介紹如下:

(1).float屬性方式被所有的主流瀏覽器支援。

(2).cssFloat被IE8以上瀏覽器和其他標準瀏覽器支援。

(3).styleFloat可以被IE8和IE8以下瀏覽器支援。

以前教程說不能直接用float屬性,但現在測試可以,也許是當前的火狐等瀏覽器已經支援。

為了穩妥,建議使用上面的程式碼做一下相容性處理。

相關文章