gpt4 book ai didi

javascript - Vuejs如何使用innerHtml更改元素内容

转载 作者:行者123 更新时间:2023-12-02 23:09:19 25 4
gpt4 key购买 nike

您好,我想知道如何更改 <h3 id="score"> innerHtml单击按钮时。

enter image description here

在 Vanilla Javascript 中,我可以通过以下方式访问该元素:

const score = document.querySelector('#score');

并通过这样做来更改它:

score.innerHtml = "13";

类似的东西。

<template>
<div id="scoreboard">
<h4>{{header_my}}</h4>
<button v-on:click="changeH3()">Change</button>
<h3 id="score">0</h3>
</div>
</template>

<script>
export default {
name: "scoreboard",
data() {
return {
header_my: "Hello Wolrd"
};
},
methods: {
changeH3() {
const h3 = document.querySelector("#score");
h3.innerHtml = "12";
}
}
};
</script>

changeH3 时,我该怎么做?叫做? innerHtmlh3idscore必须更改为12 .

最佳答案

就像这样就完成了:

let html = "<b>some text</b>"  
<div v-html="html" />

关于javascript - Vuejs如何使用innerHtml更改元素内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57448865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com