我试图为浏览器创建一个扩展,我想在本地保存图像。我希望将图像保存在 json 文件中。我很迷茫怎么做。下面是我的代码,虽然我确信我离得很远。谢谢
<label>Add New Image From Desktop</label>
<input type="radio" title="Add New Image From Local Machine" name="addMethod" id="radio" />
</br>
<input type="file" id="file-field"/>
<input type="button" id="upload" value="Submit" />
</br>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" language="JavaScript">
$(document).ready(function() {
$("#upload").click(function(data) {
//alert(data);
$.ajax({
type : "POST",
url : "settings.json",
dataType : 'json',
data : {
json : JSONArray.stringify(data) /* convert here only */
}
});
window.location.reload();
});
});
</script>