English 中文(简体)
(() 找不到) 不工作
原标题:find() not working

我将动态创建一堆 li 元素

$.each(data.attributes.listingImages, function (i, obj){
if(i == 1){
   $( #js-carousel-menu ).append( <li media class="active"><a media-frame><img class="js-carousel-item" src="  +obj.thumbnail+   " /></a></li>  );
 }else{
   $( #js-carousel-menu ).append( <li media><a media-frame><img class="js-carousel-item" src="  +obj.thumbnail+   " /></a></li>  );
}

当我尝试查找活动 li 时,它没有找到它

$gallery = $(this.el).find( #js-carousel-menu );
var _this = $gallery.find( li.active );

不过如果我追踪到 $gallery 它给我:

<ul>
 <li media>...</li>
 <li media class="active">...</li>
 <li media>...</li>
 ...
 <li media>...</li>
</ul>

我错过了什么?

最佳回答

由于 是一个ID, 您不需要找到它, 您可以直接选择它。 请检查查看选择器是否成功 。

alert($(this.el).find( #js-carousel-menu ).length)
问题回答

因为ID必须是独一无二的, $( this.el. findd (#js-carousel-menu)); 是无用的(也可能是你问题的原因):只能有一个

所以,尝试一下:

var _this = $( #js-carousel-menu ).find( li.active );

你为什么不直接使用

(#js-carousel-menu> li. active ) ;

您正在将活动类与 < 坚固 > 秒 < / 坚固 > li 元素( 指数 1) 进行切换( 指数 1) 。 所以我假设您只添加一个 li, 这样您就不会有 li 。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签