嗨,大家好,我正在嘗試提交表單,並在同一頁上得到一個結果爲jpeg。怎麼過,當點擊提交按鈕 我得到的一些奇怪的代碼,而不是像HCAN你們幫我在這裏是我的代碼如何顯示圖像與符號
function xgetbarcode()
{
$.get('ajax_barcode.php', { barcode: $('form[name=getbarcodeform] input[name=barcode]').val(),
getarticlenumber: $('form[name=getbarcodeform] input[name=getarticlenumber]').val(),
},
function(output)
{
$('#getbarcodee').html(output).show();
});
}
<form>....
<input type="button" value="barcode" onclick="xgetbarcode();">
</form>
<div id="getbarcodee">here i get some weird symbol</div>
非常感謝
看看ajax_barcode.php會做些什麼會很有幫助。 – AndrewR