正如您可能已经看到我的其他问题几乎都是输入框和sql的问题,我仍然在学习任何帮助都很受欢迎。
以下问题是我如何显示一个上传的按钮......让我们说一个图像...使用诅咒的PHP ...但是对于这个例子我只会使用html,因为ruslt必须由java来管理...
所以我的按钮按照以下方式工作
<input type="button" id="filers_bordado" value="Upload" class="imgBordado ">
<script>
new AjaxUpload("filers_bordado",{action:"upload.php?tmpl=up&op=product&view=product&task=ajaxupload",data :{mname:"filers_bordado"}, name:"filers_bordado",onSubmit : function(file , ext){jQuery("filers_bordado").text("Subiendo" + file);this.disable();}, onComplete :function(file,response){jQuery("<li></li>").appendTo(jQuery("#ol_rs_bordado")).text(response);var uploadfiles = jQuery("#ol_rs_bordado li").map(function() {return jQuery(this).text();}).get().join(",");jQuery("#rs_bordado_15").val(uploadfiles);this.enable();jQuery("#rs_bordado").val(uploadfiles);}});
</script>
这与使用[<input type="file" name="file" id="file">
]
这里的问题不是我的按钮上传文件到服务器的功能,问题是使用的方式......请允许我...
我有一个复选框,如下所示
<input type="checkbox" onclick="javascript:changePropertyDropdown("15","0","0","8","27","50","50");" required="0" attribute_name="Posición" class="inputbox" id="property_id_prd_15_0_8" name="property_id_prd_15_0_8[]" value="27">
此复选框中的脚本用于将该值添加到不同的值输入,这与我需要的内容无关...当用户选中该框时我想显示上传按钮并使其成为必需,显示或隐藏按钮我使用与我的预览问题相同的技巧:Show box or input box on checked box
我不能做的是要求按钮...如何使按钮成为必需? ...
谢谢。
答案 0 :(得分:0)
您可以在changePropertyDropdown()函数之前添加this.required='true';
。