要销毁一个 <div> 元素下的所有子节点,您可以使用以下方法之一:
使用 innerHTML 属性:
const divElement = document.getElementById('your-div-id');
divElement.innerHTML = ...
yekong
1年前 (2023-07-02)
喜欢
习惯了使用vue脚手架开发项目,突然使用普通的html来写页面有一些不习惯,在开发普通的html项目用,客户要求适配小屏幕,所以这里要把以前的px改为rem的写法。
vue脚手架项目中时使用的postcss-pxtorem,但是普通的html中并没有这些,所以需要手动来写。
首先...
yekong
2年前 (2023-05-27)
喜欢
html 视频播放循环视频播放 可以用在一些需要循环视频做背景的页面。
html
<video v-show="showvideo" loop id="video" muted class="shipin" a...
yekong
3年前 (2022-04-22)
喜欢
<meta name="viewport" content="width=device-width, initial-scale=0, maximum-scale=0, user-scalable=yes,shrink-to-fit=no&qu...
yekong
3年前 (2021-11-23)
喜欢
a页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="wid...
yekong
3年前 (2021-11-11)
喜欢
找到配置文件
location ~* \.(gif|png|jpg|css|js|woff|woff2)$
{
proxy_pass http://127.0.0.1:7000;
proxy_set_header Host $host;
proxy_...
yekong
3年前 (2021-09-04)
喜欢
在标签video添加loop参数即可
<video class="loginimg wow slideInLeft" loop muted id="video" autoplay="autoplay" contro...
yekong
3年前 (2021-09-04)
喜欢
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1...
yekong
3年前 (2021-09-02)
喜欢
声明英文网站
<html lang="en">
en即表示english 也就是你的网站是英文网站
声明中文网站
<html lang="zh-CN"> 中文
<html lang="zh-Hans&...
yekong
3年前 (2021-09-02)
喜欢