gpt4 book ai didi

javascript - 如何组合两个脚本

转载 作者:行者123 更新时间:2023-12-01 01:43:47 25 4
gpt4 key购买 nike

// ===========for checking the size of an image
$(document).on('change', '#images', function() {
files = this.files;
size = files[0].size;

//max size 50kb => 50*1000
if (size < 1000141) {
return true;

//break;
// end;
}
alert('File size greater than 1MB cannot be uploaded');
return false;
});

//===========used for showing the preview of image
function readURL(input) {

if (input.files && input.files[0]) {
var reader = new FileReader();

reader.onload = function(e) {
$('#blah').attr('src', e.target.result);
$('#blah').show();
}
reader.readAsDataURL(input.files[0]);
}
}
$("#images").change(function() {
readURL(this);
});

第一个脚本显示警报,但第二个脚本在大小大于 1MB 时提供预览。

最佳答案

您可以传递鼠标事件

onmouseover='firstscriptFuncname' '第二个脚本函数名称'

像这样

onmouseover='readURL(input) readURL(input)'

不要使用逗号分隔,只需一个空格即可。

关于javascript - 如何组合两个脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31692176/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com