这是我的问题我一直在使用ken do-control上传控件来上传我的图像,真正的问题是我想设置验证,用户应该上传图像在35毫米* 45毫米。并在肯做上传事件我给了函数Events(events => .Select("onImageSelect")
并在函数function onImageSelect(e) {
if (e.files[0].width == 35||e.files[0].height == 45)
{
return true;
}
中
但我的宽度和高度未定义