js实现css标记显示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style
type="text/css">
#show{
width:100px;
height: 50px;
margin:0
auto;
background:#2c2c2c;
color:#fff;
text-align:center;
}
</style>
<title>进制转换</title>
<script type="text/javascript" >
document.write("<div id=‘show‘>");
var
date=parseInt(prompt("请输入十进制数据",0));
var
base=parseInt(prompt("请输入基数(2,8,16)",2));
var
result;
switch(base){
case
2:
case 8:
case 16: result =
date.toString(base);break;
default: result = "<span
style=‘color:red‘>非法</span>"
}
document.write(result);
document.write("</div>");
</script>
</head>
<body>
</body>
</html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。