Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
extjs+;当我右键单击链接时,它仍处于悬停状态。如何使其无效_Extjs - Fatal编程技术网

extjs+;当我右键单击链接时,它仍处于悬停状态。如何使其无效

extjs+;当我右键单击链接时,它仍处于悬停状态。如何使其无效,extjs,Extjs,我在Extjs应用程序中使用链接,我面临着悬停状态的问题 当我右键单击任何链接时,它会显示悬停状态,直到我单击外部。一旦我点击外部,它就会恢复正常 我想显示正常状态,只要移动鼠标离开该链接 这是我的CSS .linkbold{ color:#0080cc; font-family:Tahoma; font-size:11px; text-decoration:none; font-weight:bold !important; } a.linkbold:l

我在Extjs应用程序中使用链接,我面临着悬停状态的问题

当我右键单击任何链接时,它会显示悬停状态,直到我单击外部。一旦我点击外部,它就会恢复正常

我想显示正常状态,只要移动鼠标离开该链接

这是我的CSS

.linkbold{
    color:#0080cc;
    font-family:Tahoma;
    font-size:11px;
    text-decoration:none;
    font-weight:bold !important;
}
a.linkbold:link, a.linkbold:visited{
    color:#0080cc;
    font-family:Tahoma;
    font-size:11px;
    text-decoration:none;
    background-color: #red;
    font-weight:bold !important;
    display:block;
}
a.linkbold:hover{
    color:#000000;
    font-family:Tahoma;
    font-size:11px;
    text-decoration:none;
    font-weight:bold !important;
}
a.linkbold:active{
    color:#000000;
    font-family:Tahoma;
    font-size:11px;
    text-decoration:underline !important;
    font-weight:bold !important;
    display:block;
}

我已更改a.linkbold:active颜色,并在活动状态下删除下划线。 活动状态下的颜色变为正常