代码是:

<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文件。)

最佳答案

演示:http://jsfiddle.net/NbGBj/

$("document").ready(function(){

    $("#upload").change(function() {
        alert('changed!');
    });
});

09-16 08:51