我的脚本有问题。我所做的是获取任何标记<p>
的css id并在脚本中告诉他:x之后删除标记<a>
。它适用于Y类,但在X类中它不起作用,我没有收到任何错误。
我的代码:
jQuery(function ($) {
var i = '';
for (i = '9'; i <= '22'; i++) {
$('div > p.lessonsrow-' + i).find('a[href]').attr('href', '#lock');
$('div > p.lessonsrow-' + i).find('i.cercale2').replaceWith('<i class="cercale2 fa fa-lock fa-1x"></i>')
}
});
标签HTML:
foreach ($lessonsid as $row) {
$html .= $counter % 2 == 0 ? '
<div class="span12 bar_lessons">
<p class="lessonsrow-' . $row->id . '">
<i class="cercale2 glyphicon glyphicon-play fa-1x"></i>
<a href="' . url() . '/gui/' . $url . '/' . Request::segment(3) . '/lessons/' . $row->courses_id . '/vod/' . $row->id . '">' . trans('lessons.' . $row->name) . '</a>
</p>
<p class="text">Lorem ipsum dolor sit amet, con</p>
</div>' : '
<div class="span12 bar_lessons2">
<p class="lessonsrow-' . $row->id . '">
<i class="cercale2 glyphicon glyphicon-play fa-1x"></i>
<a href="' . url() . '/gui/' . $url . '/' . Request::segment(3) . '/lessons/' . $row->courses_id . '/vod/' . $row->id . '">' . trans('lessons.' . $row->name) . '</a>
</p>
<p class="text">Lorem ipsum dolor sit amet, con</p>
</div>';
$counter++;
}
我使用laravel fraemwork。
图片:
http://prntscr.com/60ystp - 这个类别运作良好
http://prntscr.com/60ysna - 这个类别不起作用
答案 0 :(得分:0)
你正在尝试循环一个字符。这个for循环将运行0次。试试这个javascript。你的循环也想在9-22之间迭代。我猜ids不仅在9-22之间。所以适用于所有适用的div&gt; p
jQuery(function ($)
{
$('div.span12 > p').find('a[href]').attr('href', '#lock');
$('div.span12 > p').find('i.cercale2').replaceWith('<i class="cercale2 fa fa-lock fa-1x"></i>')
});