2

如果输入不包含任何文本,我不想显示文件浏览器。

这是我的代码...

var haveText = false;
$('#input_box').bind('change',function(){
    if($(this).val()) {
        haveText = true;
    } else {
        haveText = false;
    }
});

$('a.plupload_add').click(function(e) {
    uploader.trigger("DisableBrowse", true);

    if(haveText) {
        $(this).unbind('click');
        uploader.trigger("Refresh");
        uploader.trigger("DisableBrowse", true);
        uploader.trigger("DisableBrowse", false);
    } else {
        alert("no test");
    }
    e.stopPropagation();
});

我应该改变什么来做我需要的?

4

1 回答 1

2

当您的文本框更改值时,也许您可​​以切换浏览按钮的可见性:

$('#input_box').bind('change',function(){
    if($(this).val()!=='') {
        $("a.plupload_add").show();
    } else {
        $("a.plupload_add").hide();
    }
});
于 2012-05-14T14:22:36.950 回答