我的HTML输入是在jQuery中创建的,因此默认情况下没有处理程序。我正试图进行物业变革
$('#input').delegate('input propertychange', function() {
console.log('Hello World');
});
或
$('#input').on('input propertychange', function() {
console.log('Hello World');
});
预期的行为是当我输入在jQuery中生成的输入时,console.log返回消息。 以上两个例子都不起作用,有什么建议? 谢谢!
编辑:
我以这种方式生成输入:
$('#container').append('<input type="text" id="inputidhere" value=""></input>');