当我运行此代码时:
function r_suchen(){
von = document.getElementById("datum_von").value;
bis = document.getElementById("datum_von").value;
rid = document.getElementById("r_id").value;
$.ajax({
type: "POST",
url: "con/funktionen/login/rechnung/rechnungen.php",
data : {
von : von,
bis : bis,
rid : r_id
}
}).done(function( data )
{
var obj = JSON.parse(data);
document.getElementById("rechnungen_user").innerHTML = obj.ausgabe;
});
}
我收到此错误:
TypeError:在未实现的对象上调用了'stepUp' HTMLInputElement接口。
为什么?