我是JQuery的新手。我有以下代码:
$(document).ready(function() {
$('#pics').bind('change', function() {
filesize = this.files[0].size; //Value of this one
alert(filesize);
});
$('#Frm001').ajaxForm(function() {
$('span.save-notice').text('Save Changed Successfully'+filesize); //to this one
$('span.save-notice').show();
});
});
我如何实际从上面的函数获取值filesize到ajaxFormFunction,因为我在filesize上有错误??
由于
答案 0 :(得分:0)
我认为你想要做的是:在改变时执行ajaxForm。
$(document).ready(function() {
$('#pics').bind('change', function() {
filesize = this.files[0].size; //Value of this one
alert(filesize);
$('#Frm001').ajaxForm(function() {
$('span.save-notice').text('Save Changed Successfully'+filesize); //to this one
$('span.save-notice').show();
});
});
});