我有以下标签,如何在其中添加评论?
<s:select id="productPrice.product"
name="productPrice.product"
headerKey="0"
headerValue="-- Select Product --"
list="products"
listKey="id"
listValue="name"
value="productPrice.product.id"
theme="simple"
onchange="getDisplayName(value)" <!-- How to comment here ? -->
/>
我试过了 :
<!-- abc -->
<%-- abc --%>
// abc
它们都不起作用,正确的方法是什么?