0

可能很容易做到,但我无法解决!

我正在尝试制作一个按钮,它将从数据库中提取的行值插入到文本字段中。

<?php while ($row = mysql_fetch_array($query)) { ?> <tr> 
<td><?php echo $row['mobile_number']; ?></td>
<td><input type="button" value="select" onclick="clickMe()" /></td>
</tr>
<?php } ?>

<input type="text" id="textfield" />

因此,当单击“选择”按钮时,文本字段将填充手机号码。

非常感谢您提前提供的帮助。

4

1 回答 1

1

Try this:

<script>
function clickMe(number) {
    document.getElementById("textfield").value = number;
    // or jQuery
    $("#textfield").val(number);
}
</script>

<?php while ($row = mysql_fetch_array($query)) { ?> <tr> 
<td><?php echo $row['mobile_number']; ?></td>
<td><input type="button" value="select" onclick="clickMe(<?php echo $row['mobile_number']; ?>)" /></td>
</tr>
<?php } ?>

<input type="text" id="textfield" />
于 2013-11-04T12:50:11.657 回答