gpt4 book ai didi

javascript - 如何使用 PHP 值和输入值作为输入进行动态 JavaScript 调用

转载 作者:行者123 更新时间:2023-11-27 23:58:07 25 4
gpt4 key购买 nike

我正在尝试实现以下功能来添加更多行

enter image description here

但我很难弄清楚如何进行 javascript 调用

<button onclick="buildTable(?????)"><i class="glyphicon glyphicon-plus"></i></button>   

当前行数存储在 PHP 变量 $rows 中,该变量是在之前的 buildTable(1) 调用中传入的

我需要将 $rows 添加到下面输入框中的值(下面的“8”,如下所示)

<input type="number" placeholder="1" name="moreRows">

如何将 $rows 添加到 moreRows 并将其传递给调用?

最佳答案

使用 getElementsByName() 查找输入元素,获取其值,并将其添加到 PHP 变量中。

<button onclick="buildTable(<?php echo $rows; ?> + parseInt(document.getElementsByName('moreRows')[0].value, 10))"><i class="glyphicon glyphicon-plus"></i></button>   

关于javascript - 如何使用 PHP 值和输入值作为输入进行动态 JavaScript 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32082337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com