代码是:
<input ID="fileUpload1" runat="server" type="file"
以下工作正常:
<input onchange="javascript:alert('hola');" ID="fileUpload1" runat="server" type="file"
我想使用jQuery获得此结果,但这不起作用:
$('#fileUpload1').change(function (e) {
alert("hola");
});
我想念什么吗? (编辑:是的,我错过了* .js文件。)
最佳答案
$("document").ready(function(){
$("#upload").change(function() {
alert('changed!');
});
});