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>
如果是要插入视频的插件的话推荐先下载jwplayer插件
引入插件JS文件
<script src="js/jquery/jquery-1.6.2.js" type="text/javascript"></script>
<script src="js/plugins/mediaplayer-5.7/jwplayer.js" type="text/javascript"></script>
JS中引入播放器
<script type="text/javascript">
var thePlayer
$(function() {
thePlayer = jwplayer('container').setup({
flashplayer: 'js/plugins/mediaplayer-5.7/player.swf',
file: 'js/plugins/mediaplayer-5.7/video.mp4',
width: 500,
height: 350,
dock: false
})
</script>
或者直接采用<video>标签
插入ppt,你都用了h5了,怎么还不懂h5的心啊?h5都抛弃flash了。想在h5中插入ppt,word等这些,必须使用php,java,等语言读取文件,生成纯文本,返回给html页面。
可以百度搜索 php,java读取ppt
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)