假设我有这段 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 */
. 在这种情况下,还有另一种方法可以制作代码块吗?
Visual Studio 也无法识别Ctrl++ 。KC