Blogger Information
kong
Blog
37
fans
0
comment
1
visits
28115
integral:0
P beans:512
Blog classification
jq案例 7 articles
js移动端 1 articles
js案例 3 articles
VsCode 编辑器 2 articles
HTML 11 articles
css 1 articles
javaScript 9 articles
PHP基础小白 0 articles
vue 3 articles
  • List of blog posts
  • VUE组件

    组件化开发prop向子组件传递数据 import OneCom from "./co...

    2024-01-09 15:25 Read 196 comment 0
  • vue基础

    vue挂载 {{num}} {{uname}} const Counter = {//配置对象 data:function(){ return{ ...

    2023-12-24 15:06 Read 170 comment 0
  • Vite脚手架 安装

    一、Vite 安装# 1、安装vite脚手架,全局安装// yarnyarn global add vite// npmnpm install -g vite Vite 创建 Vue 项目需要选择Vue Router路由# 1、创建一个项目npm ...

    2023-12-17 12:40 Read 160 comment 0
  • 异步函数请求

    //异步请求 fetch().then().then()// function getData(){// fetch('https://jsonplaceholder.typicode.com/todos/')// .then(res...

    2023-12-17 12:40 Read 134 comment 0
  • JS基础要点

    cssGrid布局 二维布局:可在水平垂直两个方向上同时布局1.栅格布局1.1. 容器 display: grid/inline-grid: 容器类型(块状或者行内)1.1: 属性grid: 块状grid-inline-grid: 行内 grid-t...

    2023-10-20 09:15 Read 488 comment 0
  • 使用js在图片鼠标右击提示没有下载权限提醒

    document.oncontextmenu = function (e) { var target = (typeof e != "undefined") ? e.target : event.srcElement if (target...

    2023-07-12 13:49 Read 859 comment 0
  • 网页SEO、搜索引擎meta标签

    2023-07-12 13:38 Read 906 comment 0
  • 构造函数与类、获取DOM元素

    类与DOM操作-11. 构造函数class users{// 1. 属性constructor(uname,email){this.uname = uname;this.email = email;}// 2. 方法// 自动创建倒原型中say(){...

    2023-04-06 00:06 Read 700 comment 0
  • 访问器属性与字符串,数组常用方法

    Js 基本语法 - 5访问器属性 语法糖 1. getter: getAge() => get age() 2. setter: setAge(value) => set age(value)按照“属性来访问”,按照“方法”来声明做判断的话提示错误优...

    2023-04-04 18:29 Read 641 comment 0
  • JS循环,函数返回值与解构赋值

    JS基本语法 - 4循环/** 循环三要素 * 1. 初始化: 入口 * 2. 条件: true开始,false终止 * 3. 更新条件: 避免死循环 **/ // 1. whilelet arr = [10 ,'admin' ,true]// (1...

    2023-03-28 00:22 Read 630 comment 0
  • javascript引用类型与流程控制

    JS基本语法-31. 引用类型基本类型:number ,string ,boolean ,null ,undefined引用类型:object ,array ,function 数组// const arr = [数组成员可以是任意类型]//数组co...

    2023-03-22 23:20 Read 541 comment 0
  • Js变量、常量、四种函数类型和五种基本数据类型

    Js变量、常量、四种函数类型和五种基本数据类型变量、常量 //声明变量 let userName //赋值(第一次赋值叫初始化) userName = '小明'; //更新(第二次叫更新) userName = ...

    2023-03-10 23:20 Read 802 comment 0
  • uniapp动态添加类名

    2023-03-10 13:35 Read 864 comment 0
  • css 模块化引用

    css 模块化语法@import url() 演示在style.css文件中引入全部css文件 在html页面中只需要引用style.css即可

    2023-03-06 23:21 Read 317 comment 0
  • html+ css grid布局 淘宝静态首页排版案例

    淘宝静态首页排版

    2023-03-03 14:12 Read 331 comment 0
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!