HTML Tag input onclick 可用的功能大全

1. <input οnclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1>

2. <input οnclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2>

3. <input οnclick=document.all.WebBrowser.ExecWB(10,1) type=button value=属性 name=Button3>

4. <input οnclick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印 name=Button>

5. <input οnclick=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置 name=Button4>

6. <input οnclick=window.location.reload() type=button value=刷新 name=refresh>

7. <input οnclick="window.external.ImportExportFavorites(true,'');" type=button value=导入收藏夹 name=Button5>

8. <input οnclick="window.external.ImportExportFavorites(false,'');" type=button value=导出收藏夹 name=Button32>

9. <input οnclick="window.external.AddFavorite(location.href, document.title)" type=button value=加入收藏夹 name=Button22>

10. <input οnclick="window.external.ShowBrowserUI('OrganizeFavorites', null)" type=button value=整理收藏夹 name=Submit2>

11. <input οnclick='window.location="view-source:" + window.location.href' type=button value=查看源文件 name=Button7>

12. <input οnclick="window.external.ShowBrowserUI('LanguageDialog', null)" type=button value=语言设置 name=Button6>

13. <input οnclick="document.execCommand('Cut')" type=button value=剪切>

14. <input οnclick="document.execCommand('Copy')" type=button value=拷贝>

15. <input οnclick="document.execCommand('Paste')" type=button value=粘贴>

16. <input οnclick="document.execCommand('Undo')" type=button value=撤消>

17. <input οnclick="document.execCommand('Delete')" type=button value=删除>

18. <input οnclick="document.execCommand('Bold')" type=button value=黑体>

19. <input οnclick="document.execCommand('Italic')" type=button value=斜体>

20. <input οnclick="document.execCommand('Underline')" type=button value=下划线>

21. <input οnclick="document.execCommand('stop')" type=button value=停止>

22. <input οnclick="document.execCommand('SaveAs')" type=button value=保存>

23. <input οnclick="document.execCommand('Saveas',false,'c:\\test.htm')" type=button value=另存为>

24. <input οnclick="document.execCommand('FontName',false,fn)" type=button value=字体>

25. <input οnclick="document.execCommand('FontSize',false,fs)" type=button value=字体大小>

26. <input οnclick="document.execCommand('refresh',false,0)" type=button value=刷新>

27. <input οnclick=window.location.reload() type=button value=刷新>

28. <input οnclick=history.go(1) type=button value=前进>

29. <input οnclick=history.go(-1) type=button value=后退>

30. <input οnclick=history.forward() type=button value=前进>

31. <input οnclick=history.back() type=button value=后退>

32. <input οnclick='window.external.ImportExportFavorites(true," type=button value=导入收藏夹>

33. <input οnclick='window.external.ImportExportFavorites(false," type=button value=导出收藏夹>

34. <input οnclick="window.external.ShowBrowserUI('OrganizeFavorites', null)" type=button value=整理收藏夹>

35. <input οnclick="window.location = 'view-source:'+ window.location.href" type=button value=查看源文件>

36. <input οnclick="window.external.ShowBrowserUI('LanguageDialog', null)" type=button value=语言设置>

37. <input οnclick="window.external.AddFavorite('http://www.jenfy.cn', 十万个为什么)" type=button value=加入收藏夹>

38. <input οnclick="window.external.addChannel('http://www.jenfy.cn')" type=button value=加入到频道>

39. <input οnclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.jenfy.cn/')" type=button value=设成主页>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用HTML5的<video>标签来实现多功能视频播放画面,以下是一个简单的示例代码: ``` <!DOCTYPE html> <html> <head> <title>多功能视频播放画面</title> </head> <body> <video id="myVideo" width="640" height="360" controls> <source src="myVideo.mp4" type="video/mp4"> <source src="myVideo.webm" type="video/webm"> <source src="myVideo.ogg" type="video/ogg"> Your browser does not support the video tag. </video> <br> <button onclick="playPause()">播放/暂停</button> <button onclick="makeBig()">放大</button> <button onclick="makeSmall()">缩小</button> <button onclick="makeNormal()">原始大小</button> <br> <input type="range" id="myRange" value="0" step="0.01" onchange="changeVolume()"> <br> <button onclick="muteUnmute()">静音/取消静音</button> <br> <script> var myVideo = document.getElementById("myVideo"); var myRange = document.getElementById("myRange"); function playPause() { if (myVideo.paused) { myVideo.play(); } else { myVideo.pause(); } } function makeBig() { myVideo.width = 960; myVideo.height = 540; } function makeSmall() { myVideo.width = 320; myVideo.height = 180; } function makeNormal() { myVideo.width = 640; myVideo.height = 360; } function changeVolume() { myVideo.volume = myRange.value; } function muteUnmute() { if (myVideo.muted) { myVideo.muted = false; } else { myVideo.muted = true; } } </script> </body> </html> ``` 在这个示例中,<video>标签定义了一个视频播放器,其中包含了三个<source>标签,用于指定不同格式的视频文件,以便在不同的浏览器中播放。controls属性用于显示播放器的控制条。 下面是一些JavaScript函数,用于实现播放器的各种功能: - playPause():用于播放/暂停视频。 - makeBig():用于将视频放大到960x540像素。 - makeSmall():用于将视频缩小到320x180像素。 - makeNormal():用于将视频恢复到原始大小(640x360像素)。 - changeVolume():用于改变视频的音量。 - muteUnmute():用于静音/取消静音视频。 这些函数都是通过JavaScript来实现的,可以在<button>标签中调用它们。此外,还有一个<input>标签,用于控制视频的音量。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值