$(function () {
$("#button01").click(function () {
var path = $("#inputfile").val();
if (path.length == 0) {
alert("图片不能为空!");
$(this).prop("disabled",true);
}
});
});
$(function () {
$("#inputfile").change(function () {
$("#button01").prop("disabled",false);
$("#button01").prop("type",submit)
}) ;
});
先获取到该input框中的value值,然后通过length属性可以判断是否为空。