如何将 URL 位置从表行传递到 simplemodal 脚本
我在游戏表中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需内联 onclick。最好将此 URL 放入每个 tr 的 rel 属性中,并将其放入 on click 处理程序中。示例:
使用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:
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