标签: javascript jquery html css
我编写了以下jquery来隐藏一些元素: -
<script> $( document ).ready(function() { $('a.ms-pivotControl-surfacedOpt:contains("question")').hide(); }); </script>
并且在首次加载页面时效果很好。但是如果使用ajax添加新内容,那么上面的选择器将无法隐藏它...所以有人可以这样做吗? 感谢