在发布部分,我尝试将发布的数据放入字段
但这对我不起作用
一些身体可以帮助
谢谢
function sel_item() {
$('#tab_logic tbody tr').each(function(i, element) {
var html = $(this).html();
if (html != '') {
var selectedbox = $(this).find('.select').val();
//alert(selectedbox);
$.post("classes/qetitemprice.php", {
item: selectedbox
})
.done(function(data) {
alert(data);
$(this).find('.price').val(data);
});
}
});
}