从由 PHP echo 生成的表行单元格中的按钮执行 Javascript 函数

发布于 2024-12-29 02:24:04 字数 1188 浏览 0 评论 0原文

我想从表行单元格调用 Javascript 函数。 我还需要传递该行的 id。

在一个单元格中,我使用 href(它会弹出我的编辑对话框),但不传递 Id (BrId)。 下一个,理想情况下是一个调用 Javascript 函数的按钮(尽管我见过在 $(document).ready(function() {.....etc} 中关联点击事件函数的代码/函数)),但不确定这是否会获取所需的 Id (BrId),它是数据库表的主键。

代码是:

foreach ($myrows as $row) {               
       echo "<tr>"; 

         echo '<td style="border:none;">' .$row->BrId. '</td>'; 
         echo '......'
         echo '......'
         echo '<td style="border:none;"><a href="#dialog" name="modal">Edit this branch </td>';
         echo '<td style="border:none;"><button onclick="EditBranch (1)"></td>';
 }

理想情况下,该函数还会将我的弹出 div ( id=dialog ) 显示为 。 “a href="#dialog” name="modal" 可以,

如果这有帮助,这是脚本的一部分:

$(document).ready(function() {

     //select all the a tags with name equal to modal
     $('a[name=modal]').click(function(e) {

     //Cancel the link behavior
     e.preventDefault();

     //Get the A tag 
     var id = $(this).attr('href');  //gets me my div id

    //other code for transition effects and positioning of my div....
}

I want to call a Javascript function from a table row cell.
I need to pass the id of that row as well.

In one cell I use an href (which does popup my edit dialog), but does not pass the Id (BrId).
The next one, well ideally a button which invokes a Javascript function (though I've seen code/functions which associates a click event function within $(document).ready(function() {.....etc}) but unsure if this will pick up the required Id (BrId) which is a primary key to a database table.

Code is:

foreach ($myrows as $row) {               
       echo "<tr>"; 

         echo '<td style="border:none;">' .$row->BrId. '</td>'; 
         echo '......'
         echo '......'
         echo '<td style="border:none;"><a href="#dialog" name="modal">Edit this branch </td>';
         echo '<td style="border:none;"><button onclick="EditBranch (1)"></td>';
 }

Ideally the function would also show my popup div ( id= dialog ) as the "a href="#dialog" name="modal" does.

If this helps, here's a section of the script:

$(document).ready(function() {

     //select all the a tags with name equal to modal
     $('a[name=modal]').click(function(e) {

     //Cancel the link behavior
     e.preventDefault();

     //Get the A tag 
     var id = $(this).attr('href');  //gets me my div id

    //other code for transition effects and positioning of my div....
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

緦唸λ蓇 2025-01-05 02:24:05

您可以通过自定义 html 数据属性传递行 ID:

echo '<a href="#dialog" name="modal" data-id="' . $row->BrId . '"> Edit this branch </a>';

然后,您只需像这样检索它:

var id = $(this).attr('data-id');

You can pass the row id through a custom html data attribute :

echo '<a href="#dialog" name="modal" data-id="' . $row->BrId . '"> Edit this branch </a>';

Then, you simply retrieve it like that :

var id = $(this).attr('data-id');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文