HTML 没有表达 逻辑 (如条件判断和循环)的方法。但 Svelte 可以。
要条件性地渲染一些标记,我们可以将其包裹在一个 if
块中。让我们添加一些文本,当 count
大于 10
时显示:
App
<button onclick={increment}>
Clicked {count}
{count === 1 ? 'time' : 'times'}
</button>
{#if count > 10}
<p>{count} is greater than 10</p>
{/if}
试试看 — 更新组件,然后点击按钮几次。
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
let count = $state(0);
function increment() {
count += 1;
}
</script>
<button onclick={increment}>
Clicked {count}
{count === 1 ? 'time' : 'times'}
</button>