我想显示文本框值。我有一个for循环值,需要在我的代码如下的文本框中显示循环值:
<html>
<head>
<script>
function saveedit(id)
{
var str = 'txt'+id;
str = str.replace(/^\s+|\s+$/g,"");
var quote_send_id=document.getElementById(str).value;
}
</script>
</head>
<body>
<?php
for(i=0;i<=5;i++)
{
?>
<input type="text" name="txt" id="txt<?php echo $i; ?>" value="">
<?php
}
?>
<?php
for(i=0;i<=5;i++)
{
?>
<input type="button" name="txt" onclick="editfun(<?php echo $i; ?>);" value="">
<?php
}
?>
</body>
</html>
答案 0 :(得分:0)
按钮
中的功能名称错误 function saveedit(id) {
var str = 'txt'+id;
str = str.replace(/^\s+|\s+$/g,"");
var quote_send_id=document.getElementById(str).value
console.info(quote_send_id);
}
<?php for($i=0;$i<=5;$i++) { ?>
<input type="text" name="txt" id="txt<?php echo $i; ?>" value="">
<br/>
<?php }
<?php for($i=0;$i<=5;$i++) { ?>
<input type="button" name="txt" onclick="saveedit(<?php echo $i; ?>);" value="">
<br>
<?php } ?>