0
我在遊戲表中使用舊腳本http://chesstao.com/about.php。不幸的是,它對每個tr使用來自每個td的href幾次重複。我想單擊表格行並將href傳遞給'test_modal'腳本。所以我想我需要從tr中的onclick中爲var hrefval賦值。對或錯?在http://chesstao.com/test.php有沒有更好的方式來做到這一點W/O破壞dataTables?如何將表格中的URL位置傳遞給simplemodal腳本
<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>
您的代碼工作正常,但不驗證:行79,列55:屬性相對不允許的元素TR在這一點上。
我不得不使用「data-href」而不是「rel」,這將不會驗證。非常感謝您的解決方案! – verlager
相關問題