$(document).ready(function() {
$.ajax({
type: "get",
url: "textman.php",
success: function(data) {
$('#textbaz').append(data);
var file = data.split(" ");
var set = 0;
console.log(file);
$('#textbaz').append("<br><input id='textbox' type='text' placeholder='Type it man, your on the clock!'>");
}
});
$("#textbox").keypress(function() {
console.log($("#textbox").val());
});
return false;
})
问题是,它只是不控制台记录#textbox 的值。无论我在那里输入什么,它都没有效果 D: