js 第2页
JS音频播放结束后自动跳转网页-阿宅博客

JS音频播放结束后自动跳转网页

<audio id='ad' controls> <source src='yinhu.mp3' type='audio/mpeg'> </audio> <script> audio = document.getElementById('ad'); function redirectHandler() { window.locatio...
阿宅的头像-阿宅博客阿宅2022年12月27日
0963
使用JS引入CSS到网页中-阿宅博客

使用JS引入CSS到网页中

使用document.write方式输出引入css的link标签 在html文件顶部<head></head>之间添加 <script> document.write('<link rel='stylesheet' href='main.css'>'); </script> 分析: ...
阿宅的头像-阿宅博客阿宅2022年10月4日
01130