假设用户单击以下字段并选择一个文件,如何完成此操作

<input type="file" name="file" id="file"/>


然后

<input type="text" name="ytube" id="ytube" value="" />


被禁用,如果您单击管,则图像选项被禁用?

提前致谢 :)

最佳答案

用jQuery

  $(function() {
     $("input:file").change(function (){
       $("#ytube").prop('disabled', true);
     });
     $("#ytube").change(function (){
       if($("#ytube").val().trim() != ""){
          $("#file").prop('disabled', true);
       }else{
          $("#file").prop('disabled', false);
       }

     });
  });


https://jsfiddle.net/m3hu2ruc/4/

09-11 19:03
查看更多