javascript里面 input控件用type来判断,那么如果是select和textarea这些没有type属性的应该怎么判断?
展开全部
都是一样的 ,虽然没有type属性
例如
<select id="aaa">
<option>asdfasdf</option>
</select>
<textarea id="ccc">asdfasdfasdf</textarea>
<script>
alert(document.getElementById("aaa").type);
alert(document.getElementById("ccc").type);
</script>
依次弹出的是: select-one textarea
例如
<select id="aaa">
<option>asdfasdf</option>
</select>
<textarea id="ccc">asdfasdfasdf</textarea>
<script>
alert(document.getElementById("aaa").type);
alert(document.getElementById("ccc").type);
</script>
依次弹出的是: select-one textarea
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询