摘要: Attribute v-bind <script setup> import { ref } from 'vue' const titleClass = ref('title') </script> <template> <h1 :class="titleClass">Make me red</h1 阅读全文
posted @ 2024-07-10 01:58 Ch1ldKing 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 常用 DOM 属性 innerHTML: 用于获取或设置元素的 HTML 内容。 可以直接插入 HTML 代码,适合处理复杂的 HTML 结构。 element.innerHTML = '<p>New content</p>'; console.log(element.innerHTML); inn 阅读全文
posted @ 2024-07-10 01:56 Ch1ldKing 阅读(8) 评论(0) 推荐(0) 编辑