我有以下
HTML:
<table class="products"> <tr> <td>Product description probably goes here</td> <td><a href="#">more information</a></td> </tr> </table>
为了让支持Javascript的浏览器更加性感,我添加了这个jQuery(1.3.2):
$(document).ready(function(){ $('table.products tr').click(function(){ $(this).find('a').click(); return false; }); });
但我认为它会进入一个无限循环或其他东西. Safari显示了这个:
RangeError: Maximum call stack size
exceeded. jquery.min.js:12