我有一个 jquery 移动站点,它具有从 postgres 生成的动态无序列表和 php 中的 while 命令。
页面准备好后,我如何浏览每个列表块并阅读其中的文本span class="status"
,如果它等于“D”,则class='edit_btn'
在弹出菜单中隐藏相关内容。
我收集这可以在 jQuery 中完成吗?
请参阅我的示例,这将有助于解释我的问题。 http://jsfiddle.net/jamesil/wbcVy/1/
这是我到目前为止所做的,但相信我走错了方向
$('ul.bookings li').each(function() {
$(this).each(function(i) {
var status = $('span.status',this).text();
if (status = 'D')
$('ul.bookings ul li.edit_btn').hide();
});