So fügen Sie den Wert mit jQuery an das Eingabefeld an
$("#resultsInput").val($("#resultsInput").val() + temp_string);
Unusual Unicorn
$("#resultsInput").val($("#resultsInput").val() + temp_string);
// Access the input inside the div with this selector:
$(function () {
$('.textBoxEmployeeNumber input').val("fgg");
});