如何根据输入数量动态生成文本框?

时间:2010-12-08 04:56:33

标签: php javascript

我正在网上购物webpage.i需要根据输入数量显示文本框使用onKeyPress事件。

Ex:textBooks Howmany

 PHP Guid     3

然后在下面创建3个名为PHP Guid的文本框。

喜欢

 PHP Guid 
 PHP Guid
 PHP Guid 

提前感谢你。

3 个答案:

答案 0 :(得分:1)

试试这个

if input number is 5

for($j = 1; $j <= 5; $j++) {

echo "<input type="text"  name="textfield[]">";

}

答案 1 :(得分:1)

<html>
<head>
<title>Dynamic Form</title>
<script language="javascript">
function changeIt(count)
{
var i;
for(i=0;i<count;i++)
{
my_div.innerHTML = my_div.innerHTML +"<br><input type='text' name='mytext'+ i>";
}

}
</script>
</head>
<body>

<form name="form" action="post" method="">
<input type="text" name="t1" onblur="changeIt(this.value)">

<div id="my_div"></div>
</form>
</body>

答案 2 :(得分:0)

Hima

function duplicate() { var l=Number(document.getElementById('textbox name where u r entered')); for($i = 0; $i<l; $i++) { <input type=\’Text\' name=\'group'.$i.'\' id=\'Textbox'.$i.'\' value=\'' pass text box text here '\' >''</input>'; } }

这是javascript。

和babonk在php中为您提供解决方案。