英文:
Add character inside AlpineJS x-text
问题
在AlpineJS中,我有以下的代码:
<span class="value" x-text="calculate"></span>
函数calculate
返回一个数字。
如何在x-text
后面添加字符 "€" 到数字后面?
英文:
Using AlpineJS I have the following code:
<span class="value" x-text="calculate"></span>
The function calculate
returns a number.
How to inside the x-text add the character "€" after the number?
答案1
得分: 2
<span class="value" x-text="calculate() + '€'"></span>
英文:
This should work:
<span class="value" x-text="calculate() + '€'"></span>
答案2
得分: 0
英文:
you can do the following:
<span class="value" x-text="'€' + calculate"></span>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论