html中的小黑块是怎么产生的怎样去掉

html中的小黑块是怎么产生的怎样去掉,第1张

应该是汉字的编码和文件的编码方式不同才造成了小方块的出现,实际上那是两个汉字,pageEncoding="gb2312",pageEncoding="UTF-8"这是两种不同的编码方式,如果两个页面之间有数据的传递,而存在编码的方式不同则就会出现小方块.本人有过这经验,建议检查你的html编码..

你好,写了一个,不知道是不是你所说的那样,希望能帮到你,谢谢!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml/DTD/xhtml11-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-type" content="text/htmlcharset=utf-8" />

<style type="text/css">

<!--

#info{

width:200px

height:200px

display:none /*先把 DIV 隐藏*/

background-color:#ccc

}

-->

</style>

<script type="text/javascript">

<!--

window.onload=function (){

// 获取元素

var oBut=document.getElementById("but") // 按钮

var oInfo=document.getElementById("info") // 要显示的DIV

// 给按钮添加 事件

oBut.onclick=function (){

// 如果DIV 已经显示了,则隐藏否则,显示

if(oInfo.style.display=="block"){ // 如果 DIV 已经显示了

oInfo.style.display="none" // 隐藏

}else{ // 否则

oInfo.style.display="block" // 显示

}

}

}

//-->

</script>

</head>

<body>

<input type="button" value="展开" id="but" />

<div id="info">显示信息</div>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7662387.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-08
下一篇 2023-04-08

发表评论

登录后才能评论

评论列表(0条)

保存