我正在网站上创建一个元素,它会在发出ajax请求后出现/消失。我们的想法是,ajax将检查HTML上的真/假数据属性,并使用Javascript进行相应的操作。
我想弄清楚的是如何基于是否定义某事来切换该布尔值。例如,这就是我现在所拥有的
<c:if test="${not empty custom.input}">
<aside id="alert" class="row" data-path="//urlhere">
</aside>
</c:if>
<div data-foo="">
</div>
我想创建另一个数据属性(在示例中显示为data-foo),如果false
为空,则为${custom.input}
,然后将其设置为true
if { {1}}已输入。
我该怎么做?