从json输入src数据

时间:2015-02-08 18:53:43

标签: jquery json input src

我在这里得到了一个非常相似的问题: jQuery progressbar with ajax request to json

你能帮我解决一下这个问题吗?

我尝试从* .json文件中获取路径,并将其用于带有jquery的“输入图像字段”。

HTML

<input id="pic_1" type="image" src="<!-- what to do here? -->" /> 

JS

$(function() {
    $.ajax({ dataType:"json",
        url: test.json, 
        success: <!-- what to do here? -->,
    });
});

test.json

{ "pic_1":"img/test.png" }
由于jQuery progressbar with ajax request to json

会对类似的解决方案感到高兴

谢谢

1 个答案:

答案 0 :(得分:0)

为什么不使用$ .getJSON()http://api.jquery.com/jquery.getjson/