为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

i can click HTML a tag(anchor tag) even after disable.

  • 2 个回答
  • 14 人有此问题
  • 7 次查看
  • 最后回复者为 Jigarp

more options

i have applied a tag(HTML anchor tag) click on my page and now i have disabled a tag from the javascript , but still i can click on this and not gets disabled.

the problem with firefox only, in IE 8 it works fine.

Plz help on this.

i have applied a tag(HTML anchor tag) click on my page and now i have disabled a tag from the javascript , but still i can click on this and not gets disabled. the problem with firefox only, in IE 8 it works fine. Plz help on this.

所有回复 (2)

more options

Can you post a link to a publicly accessible page that doesn't require authentication (signing on) or possibly post the code that you used?

more options
  • <a id="link1" onclick="alert('1');">SPT</a>
  • <a onclick="alert('2');">Basic Information</a>
  • <a onclick="alert('3');">Federal</a>

<asp:Button ID="Button1" runat="server" OnClientClick="disableControls();" Text="Disable links"/>

Script

function disableControls() {

           document.getElementById('link1').disabled = true;
       }


Above script code is for disabling anchor tag 'link1' on click of button1. I can still clik on link1 and get alert '1'.

thnx for the reply... cor-el