作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有这段 javascript/jQuery 代码,我想注释掉标记的代码块。
<script>
function checkValues() {
// Important function
}
$(document).ready(function () {
$(".item").click(function () {
// Important action
});
/* I want to comment this block out, from here...
$("#<%=Application("InstID")%>").blur(function () {
});
$("#<%=Application("ComID")%>").blur(function () {
});
...to here */
});
</script>
但是服务器标签不允许带有 /* comment */
的常规注释 block 。在这种情况下还有另一种制作代码块的方法吗?
Visual Studio 也无法识别 Ctrl+K+C。
最佳答案
你可以用 <%-- --%>
的注释 block 包裹它们:
$(document).ready(function () {
$(".item").click(function () {
// Important action
});
<%--
$("#<%=Application("InstID")%>").blur(function () {
});
$("#<%=Application("ComID")%>").blur(function () {
});
--%>
});
关于javascript - 如何注释掉混有服务器标签的一段 javascript 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19320752/
我是一名优秀的程序员,十分优秀!