这是我使用GwtQuery隐藏给定DIV的代码:
$("#historySection").hide();
然而,它根本不隐藏。
这是实际的HTML div:
<div id="historySection" class="ui-tabs-panel ui-widget-content ui-corner-bottom pad10">
<div data-field="history">
</div>
</div>
我的代码出了什么问题?
答案 0 :(得分:2)
运行GQuery代码时,您确定您的div存在于DOM中吗?
答案 1 :(得分:0)
对我来说很好看。你可以在调用hide()方法之后在代码中加一个断点吗?此时,检查DOM中historySection div的状态。