我有一个js脚本,可以在gridview
的{{1}}内部搜索,效果很好,
但是,每当我按Enter键运行此函数时,我都会发现这个问题,因为它总是通过执行不需要总是运行的代码来触发回发。
这是gridView字段-> onfocus =“ run_routine(this)”:
<input style="font-weight: bold; font-size:14px; text-align: center" id="arrivo" class='nome_<%# Eval("BOD_ABARCODE")%> colored form-control' data-barcode='<%# Eval("BOD_ABARCODE")%>' maxlength="18" name='<%# Eval("BOD_KCODPRU").ToString +"-" + Eval("BOD_KCODCAB").ToString %>' onkeyup="enter(this)" oncopy="return false" oncut="return false" onfocus="esegui_routine(this)" onkeypress="return CheckNumericValue(event)" size="5" type="text" value='<%# Eval("BOD_SQUANTIT")%>' />
下面的js函数摘录中,我应该插入preventDefault,但是我已经尝试了很多,但对我来说不起作用:
function esegui_routine(oggetto)
{
var barcode = $(oggetto).attr('data-barcode');
var valoreIniziale = $(oggetto).val();
$(document).removeData();
$(document).data('valoreIniziale', valoreIniziale);
$(oggetto).select();
$(oggetto).off('keypress').on('keypress', function (event) {
if (event.which == '13') {
var inserito = $(this).val();
if (inserito.length != 0) {
if (inserito.length <= 4) {
var elementi = $.fn.doppio(barcode);
if (elementi == 0) {
//BARCODE NON TROVATO : play sound e rimetto il valore precedente cancellando il barcode inserito
$.fn.playSound();
//devo rimettere il valore precedente
$(oggetto).val($(document).data('valoreIniziale')).select();
}
else if (elementi == 1) {
console.log('barcode: ' + barcode);
$.fn.settaValore(barcode, inserito);
}
else if (elementi > 1) {
var kcodpru = oggetto.name;
console.log('kcodpru: ' + kcodpru);
$.fn.settaValoreDaKcodpru(kcodpru, inserito);
}
//console.log('eccomi minore di 4')
}
}
}
});
谢谢大家,辛苦了!
答案 0 :(得分:0)
我猜您正在按“提交”按钮,这导致表单回发。 使用
代替 <button id = "btnSubmit">Submit</button>