Json jcarousel不读取li标签
我之前发布过,但现在我知道问题的原因 - 我正在使用 json 和 jcarousel。我在 jcarousel 读取 li 标签数量时遇到问题。我认为这是因为它们是由 json 和 div 生成的。
$.getJSON("myurl.com", function(data){
$.each(data.myproducts, function(i,item){
$("#myproducts").append("<li>"+item.name+"</li>");
});
});
如果我在包含轮播的 div 之后硬编码 li 标签,它可以工作,但不实用。关于如何显示 json li 标签以便轮播可以读取它们有什么建议吗?
I posted before but now I know the cause of the problem - I'm using json and jcarousel. I am having an issue with jcarousel reading the number of li tags. I think it is becuase they are being generated by the json and in a div.
$.getJSON("myurl.com", function(data){
$.each(data.myproducts, function(i,item){
$("#myproducts").append("<li>"+item.name+"</li>");
});
});
If I hard code the li tags after the div that contains the carousel, it works but that is not practical. Any suggestions on how to display the json li tags so that the carousel can read them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论