为什么我在DW中写的代码在设计界面可以显示在浏览器中无法显示
<style type="text/css">
<!--
.001 {
background-color: #060;
height: 355px;
width: 345px;
border: 1px solid #900;
}
-->
</style>
</head>
<body>
<div class="001"></div>
</body>
</html>
这么简单的代码都显示不了 就是个盒子加了背景颜色和边框 在浏览器中一点效果都没有 空白的 展开
<script type="text/javascript">
// 生成2019年元旦日期函数
function _yd() {
var yd = new Date(); // 2019 - 01-01
//Year
yd.setYear(yd.getFullYear() + 1);
//Month
yd.setMonth(0);
//Day
yd.setDate(1);
//Time
yd.setHours(0,0,0,0);
return yd;
}
console.log("data-:"+"yd");console.log(_yd());
/** * 计算当前时间距元旦时间间隔 */
function yd_cal() {
var ipt = document.getElementById('time');
var now = new Date();
var ts = _yd().getTime() - now.getTime();
var _d = ts / (24 * 60 * 60 * 1000);
console.log('天:' + parseInt(_d));
var _h = (_d - parseInt(_d)) * 24;
console.log('小时:' + parseInt(_h));
var _m = (_h - parseInt(_h)) * 60;
console.log("分钟:" + parseInt(_m));;
var _s = (_m - parseInt(_m)) * 60;
console.log("秒:" + parseInt(_s));;
ipt.value = " " + parseInt(_d) + "天 " + parseInt(_h) + "小时" + parseInt(_m) + "分" + parseInt(_s) + "秒"
}
window.onload=yd_cal;
</script>
</head>
<body>
<div style=" width:500px; height:300px;background:#ccc no-repeat;">
<input type="text" id="time" name="time" style="padding:10px;" />
</div>
</body>
//我用上述代码在chrome上运行是有数字显示的
<head>
<title>测试</title>
<style type="text/css">
.one{
background: #060;
height: 355px;
width: 345px;
border: 1px solid #900;
}
</style>
</head>
<body>
<div class="one">这是测试</div>
</body>
</html>
---------------------
试一下我的,不行的话再问。