我有这个jQuery代码将检索到的值显示在“result”div中。我的问题是,如何将结果定位到指定的页面?
我的代码是
$(function(){
// SHOW RECORD
$('#headmark').change(function(){
$.post('update_fabrication_data.php',
{
action: "show",
hm:$('#headmark').val()
},
function(res){
$('#result').html(res);
});
});
});
所以,我的目标是将结果发送到updateFabrication.php
中