-1
我有json文件,我想從json文件調用圖像和標題。要求是當我點擊圖像1,然後第一個圖像和標題應附加在div 1,當我點擊其他鏈接時,它應該附加適當的圖像。我的JSON文件包含如何將json文件調用爲html
[
{
"image" : "images/test1.png",
"heading" : "Careers"
},
{
"image" : "images/item-2.png",
"heading" : "Contact Us"
},
{
"image" : "images/item-3.png",
"heading" : "About Us"
}
]
我的代碼
$(document).ready(function() {
$("a").click(function() {
var txt= $(this).text()
$.getJSON("myson.js",function(result) {
$.each(result, function(i, field) {
if(txt.indexOf('1')>-1) {
}
else if(txt.indexOf('2')>-1) {
}
else {
}
});
});
});
});
的Html
<a href='#'>Image 1</a>
<a href='#'>Image 2</a>
<a href='#'>Image 3</a>
<div style="border:solid 1px #000; width:200px; height:200px">
<div id='heading'></div>
<div id='image'></div>
</div>
太棒了!它工作正常。非常感謝 – Carlos
我很高興能幫上忙! –