English 中文(简体)
因特网探索者无法点击的超链接区
原标题:Hyperlink area not clickable in Internet Explorer

在以下例子中, 因特网探索者没有点击测试,即使电离层在电离层的底层,而且连接点在可怕的电离散工具(F12)中准确显示。 这在所有其他浏览器(当然)进行罚款。

<a href=”/“><tr><td>《试验与设计》;/td></tr></table></a>

我知道,从技术上讲,在超链接标签内打上一张桌子是不有效的,但是,这确实是我想要做些什么的唯一实际途径,而且看看它如何在所有浏览器上做得当,这难道是让它能够在电算中心工作的一个途径吗?

迄今为止,我尝试给我一张桌子,把高、宽和显示的24小时财产联系起来。 没有工作。 感谢。

最佳回答

你们说,“看看它如何在所有浏览器中进行罚款”,但实际情况并非如此。 一些浏览器实际发生的情况是,他们重新工作,使之发挥作用。

相反的:

<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>
问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签