我正在尝试将图像存储在变量中。
例如 我正在创建一个动态表格,其中图片上传是其中的一部分 在那张表中
$("#pdfFormInsideTblRight").after("<table class='table table-bordered'><thead class='thead-inverse'><tr><th class='text-left'>Properties</th>" +
"<th>Detail</th></tr></thead>" +
"<tr><td class='text-left'><strong>Product Group</strong></td>" +
"<td><input type='file' id='flImage' name='flImage[]' multiple /></td>
</tr></table>");
现在我想将上面上传的图像存储在变量'flImage'中,在变量'user'中存储,就像来自textbox
的其他输入值一样,lables值通过jquery存储在var'user'中,如下所示
<script type="text/javascript" src="http://cdn.jsdelivr.net/json2/0.1/json2.js"></script>
<script type="text/javascript">
$(function () {
$(document).on("click", "[id*=btnFrmSubmit]", function () {
var user = {};
user.PRODUCT_ID = 1;
user.REVISION = $("#Revision").text();
user.P_GROUP = $("[id*=P_Group]").val();
user.IMG1 = $("[id=flImage]")
});
}
但有问题。任何想法将不胜感激如何做到。
答案 0 :(得分:0)
我认为你想要图像标签的来源。要获得这个,你应该尝试下面的代码。
$("[id=flImage]").attr('src')