作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个网上商店模板,我需要根据商店中的每个产品在单击给定产品时打开的模式中显示正确的 JSON 数据。我还使用 handlebars 进行模板化并具有以下代码结构:
.html(打开模式的按钮)
<button type="button" class="quickview">Open Modal</button>
.html(模态)
<div id="quickview-modal">
modal content that should iterate over the JSON and display one item at a time depending on the ID
</div>
.json
{
"productID" : "1",
"name" : "productOne"
},
{
"productID" : "2",
"name" : "productTwo"
}
.js
$( ".quickview" ).click(function( event ) {
$('#quickview-modal').modal('show');
event.stopPropagation();
// Do something
});
有什么办法可以解决这个问题吗?谢谢!
最佳答案
说你的 .json 变量是 data
var data = 'your JSON';
$.each(data,function(i,v){
alert(v.productID); //will give you the value related to productID.
});
已更新
$( ".quickview" ).click(function( event ) {
event.stopPropagation();
var data = 'your JSON';
$.each(data,function(i,v){
$('#quickview-modal').append(v.name + " : " + v.productID);
});
$('#quickview-modal').modal('show');
});
关于javascript - 根据 ID 遍历 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31181019/
我是一名优秀的程序员,十分优秀!