需要知道表单字段的名称是什么?用户点击支票时创建复选框?
<html>
<head>
<title>Sample from PHP Server File Uploader Script</title>
<!––Script for Checkbox new Filename field––>
<script type="text/javascript">
function dynInput(cbox) {
if (cbox.checked) {
var input = document.createElement("input");
input.type = "text";
var div = document.createElement("div");
div.id = cbox.name;
div.innerHTML = "Enter New File Name here";
div.appendChild(input);
document.getElementById("insertinputs").appendChild(div);
} else {
document.getElementById(cbox.name).remove();
}
}
</script>
<!--End of Script for Checkbox new Filename field-->
</head>
<form method="post">
<strong>Enter Direct File URL:<br></strong>
<input name="url" size="50" /><br><br>
<strong>File name:<br></strong>
<input type="checkbox" name="Leech" onclick="dynInput(this);"> Use Different Filename?
<!--Position for New filename field-->
<p name= "filename" id="insertinputs"></p>
<input name="submit" type="submit" />
</form>
我是编码的新手! 我在哪里尝试为服务器创建远程URL PHP文件上传器!
我差不多完成了我正在添加更多代码,以便用户也可以自定义文件名! 任何帮助都将不胜感激!
查看工作代码答案 0 :(得分:1)
我认为你在寻找这个: 把这段代码放在这一行的下面:
var input = document.createElement("input");
input.setAttribute('name', 'new_attribute');