如何在js中创建返回“隐藏”数据的按钮,该按钮以前是由用户输入的?
<html>
<script>
var input,
inputCount = 0;
function newInput () {
if (input !== undefined) {
input.type = "hidden";
}
inputCount++;
input = document.createElement("input");
input.type = "text";
input.name = input.placeholder = "fname" + inputCount;
document.getElementById("box").appendChild(input);
}
</script>
<button type="button" onclick="newInput()">Add Property</button><br/>
<form action="#" method="post">
<br/><span id="box"></span><br/><br/>
<input type="submit" value="Submit">
</form>
</html>
答案 0 :(得分:2)
我建议你在程序中使用jQuery。它会让你的生活变得如此轻松
my_function <- function(input_1, input_2){
a = cbind(df$input_1, df$input_2)
}