问答详情
源自:7-14 向下取整floor()

关于placeholder问题?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
   function change(){
	   document.getElementById("daan").value=Math.floor(document.getElementById("shuru").value);
	   }
</script>
<style type="text/css">
*{font-size:18px; color:#F00;}
#shuru{background:#93C;}
button{background:#0F0;}
#daan{background:#FF0;}
</style>
</head>

<body>
  <form>
    <input type="text" placeholder="请输入数值" value=""  id="shuru"/>
    <!--在360浏览器中点击输入框,“请输入数值”不会消失,在ie中点击会消失,在DW写代码时,也会消失,这是兼容问题?-->
    <button type="button" onclick="change()">Change</button>
    <input type="text" placeholder="答案" value=""  id="daan"/>
  </form>
</body>
</html>


提问者:慕村1994845 2016-09-26 18:44

个回答

  • qq_梧桐风起于青萍之末_0
    2016-09-26 20:09:02
    已采纳

    由于placeholder是html5的新属性,可想而知,仅支持html5的浏览器才支持placeholder,目前最新的firefox、chrome、safari以及ie10都支持,ie6到ie9都不支持。

    来源:http://blog.sina.com.cn/s/blog_4a0c5a940101j8bh.html

    你可以去看看,写的很详细

  • 精慕门9027014
    2016-09-26 20:08:48

    兼容问题,应该可以用脚本代替

  • 大脸撑在大三
    2016-09-26 19:56:59

    placeholder是HTML5标签,在IE10中可以显示,这是浏览器不兼容问题!