需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html,编写问题基础代码。
2、在index.html中的<script>标签中,输入js代码:。
if (navigator.userAgent.match(/mobile/i)) {
$('video').hide()
}
3、浏览器运行index.html页面,此时在移动端中成功隐藏了video标签的控件。
1、动态创建input节点2、往form中添加Input节点
示例:
<body>
<form id='form'>--定义form
</form>
<script>
var input = document.createElement('input') //创建input节点
input.setAttribute('type', 'text') //定义类型是文本输入
document.getElementById('form').appendChild(input )//添加到form中显示
</script>
</body>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)