博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何在Svelte模板中添加评论
阅读量:2503 次
发布时间:2019-05-11

本文共 775 字,大约阅读时间需要 2 分钟。

HTML comments are great to hide elements from a page.

HTML注释非常适合隐藏页面中的元素。

In HTML here’s how you add a comment:

在HTML中,这是您添加评论的方式:

You can use this on blocks, too, to hide multiple lines of HTML:

您也可以在块上使用它来隐藏多行HTML:

Note that this is still visible in the page source. The browser just hides it, but one can always go and see the comment.

请注意,这在页面源中仍然可见。 浏览器只是将其隐藏,但始终可以看到该注释。

You can use the same comments in your Svelte templates. But with Svelte you don’t send the commented part to the browser. That part is completely removed, and only stay in your source files, invisible to the HTML generated into the page.

您可以在Svelte模板中使用相同的注释。 但是,使用Svelte,您不会将注释的部分发送到浏览器。 该部分已被完全删除,仅保留在您的源文件中,该文件对于页面中生成HTML不可见。

Which in my opinion is a positive thing.

我认为这是一件积极的事情。

翻译自:

转载地址:http://foqgb.baihongyu.com/

你可能感兴趣的文章
ubuntu开机自启动
查看>>
【WXS数据类型】Number
查看>>
canvas学习笔记 ---- 1
查看>>
纪念开博客的第一天_(:з」∠)_
查看>>
WechatHelper
查看>>
测试SDWebImage淡入淡出效果在UITableView中的重用显示问题
查看>>
[控件] ChangeColorLabel
查看>>
将位图导入为ArcGIS面要素
查看>>
前自增和后自增的区别
查看>>
Linux 基本操作
查看>>
ManagementClass("Win32_Share")之共享目录
查看>>
利用php制作对战后台程序
查看>>
【Leetcode】【Easy】Remove Linked List Elements
查看>>
django 反向解析
查看>>
快速排序一(划分)
查看>>
Oracle面试问题汇总
查看>>
Java程序员必知的8大排序
查看>>
数据库访问性能优化(二)
查看>>
Java-堆排序
查看>>
URI跳转方式地图导航的代码实践
查看>>