如何将 URL 位置从表行传递到 simplemodal 脚本

发布于 2024-12-09 19:59:21 字数 857 浏览 0 评论 0原文

我在游戏表中的 http://chesstao.com/about.php 上运行旧脚本。不幸的是,它使用每个 td 中的 href,对每个 tr 重复多次。我想单击表行并将 href 传递给“test_modal”脚本。所以我想我需要从 tr 中的 onclick 为 var hrefval 分配一个值。

是真是假?

有没有更好的方法可以在不破坏 http://chesstao.com/test.php 中的数据表的情况下执行此操作?

<tr class="gradeA" class="test_modal"  onclick="this.className='test_modal';
window.location.href='games/BG-1001.php';"><td>07/17/1998</td></tr>

<script>$('.test_modal').click(function(e) {var hrefval= $(this).attr("href");
$.modal('<iframe src="' + hrefval + '" height="535" width="1000" style="border:0">',
containerCss:{backgroundColor:"#A6B487", borderColor:"#A6B487", height:550, padding:0,
width:1020}, overlayClose:true}); e.preventDefault();});</script>

I have the old script working at http://chesstao.com/about.php in the games table. Unfortunately it uses the href from each td repeated several times for each tr. I would like to click on the table row and have the href passed to the 'test_modal' script. So I think I need to assign a value to var hrefval from the onclick in the tr.

True or false?

Is there a better way to do this w/o breaking dataTables in http://chesstao.com/test.php?

<tr class="gradeA" class="test_modal"  onclick="this.className='test_modal';
window.location.href='games/BG-1001.php';"><td>07/17/1998</td></tr>

<script>$('.test_modal').click(function(e) {var hrefval= $(this).attr("href");
$.modal('<iframe src="' + hrefval + '" height="535" width="1000" style="border:0">',
containerCss:{backgroundColor:"#A6B487", borderColor:"#A6B487", height:550, padding:0,
width:1020}, overlayClose:true}); e.preventDefault();});</script>

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

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

发布评论

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

评论(1

彼岸花ソ最美的依靠 2024-12-16 19:59:21

无需内联 onclick。最好将此 URL 放入每个 tr 的 rel 属性中,并将其放入 on click 处理程序中。示例:

<tbody>
    <tr rel="games/BG-1001.php" class="test_modal">
       <td></td><td></td><td></td>
    </tr>
   <tr rel="games/BG-1012.php" class="test_modal">
       <td></td><td></td><td></td>
   </tr>
   <tr rel="games/BG-1020.php" class="test_modal">
       <td></td><td></td><td></td>
   </tr>
</tbody>

使用js代码:

$(".test_modal").click( function(e) { var href= $(this).attr("rel"); 等等.... } );

我没有复制您代码中的所有内容,但我相信您会看到我想要实现的目标。

约万

There is no need to put inline onclick. It would be better to put this URL in the rel attribute of each tr and take it in the on click handler. Example:

<tbody>
    <tr rel="games/BG-1001.php" class="test_modal">
       <td></td><td></td><td></td>
    </tr>
   <tr rel="games/BG-1012.php" class="test_modal">
       <td></td><td></td><td></td>
   </tr>
   <tr rel="games/BG-1020.php" class="test_modal">
       <td></td><td></td><td></td>
   </tr>
</tbody>

with js code:

$(".test_modal").click( function(e) { var href= $(this).attr("rel"); etc.... } );

I have not copied everything from your code but I believe that you see what I'm trying to achieve.

Jovan

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