你们说,“看看它如何在所有浏览器中进行罚款”,但实际情况并非如此。 一些浏览器实际发生的情况是,他们重新工作,使之发挥作用。
相反的:
<table onclick="location.href= / " style="cursor: hand;">
<tr><td>Test</td></tr>
</table>
还有一张黑板,但更有效。
<>>>>>
如果你对拖网渔船有把握,则有两种可能的办法。 下面增加一个环节,例如:
<table onclick="location.href= / " style="cursor: hand;">
<tr><td>Test</td></tr>
</table>
<a href="/" style="display:none;">Test</a>
也可使用<代码><link> tag in the <head>
of the document, 诸如:
<link href="/" rel="section" />
或者,无论何种联系,。
Additionally, HTML structured as you have in your question is invalid according to the spec. In terms of what works reliably and into the future, your code does not qualify. Code written more towards an eye on standards will work more reliably.
www.un.org/Depts/DGACM/index_spanish.htm ANOTHER UPDATE
根据你的意见,我将如何安排这项工作,并作如下阐述:
<table class="dataTable">
<tr>
<td><img></td>
<td>Description</td>
<td><a href="/" class="details">Details</a></td>
</tr>
</table>
Your details link represents the link you re using, so what I would do is add this bit of JavaScript (uses jQuery, but could be rewritten for whatever libraries you re currently using:
<script>
jQuery(function($){
$( table.dataTable ).delegate( td , click , function(){
$(this).find( a.details ).trigger( click );
});
});
</script>