您的位置:首页 > Web前端 > JavaScript

Js--浮动那点事儿

2015-11-02 14:46 281 查看



<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>无标题文档</title>

<style>

#main{ width:100px; height:100px; background:red; float:right;}

</style>

</head>

<body>

    <div id="main">

    </div>

</body>

</html>

<script>

window.onload=function()

{

var oMain=document.getElementById("main");

//oMain.style.float="left";X错的

oMain.onclick=function(){

oMain.style.cssFloat="left";//非IE浏览器可行

oMain.style.styleFloat="left";//IE浏览器可行

}

</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: