在php-javascript中禁用href链接

时间:2014-08-01 10:46:29

标签: javascript php disable-link

我的页面(.phtml文件)中有4个链接,如下所示

<ul id="fileMenu" class="contextMenu">
    <li class="add"><a id ="addbtn" href="#add" style="display:none;">Add</a></li>
    <li class="download"><a href="#download">Download</a></li>
    <li class="rename"><a href="#rename">Rename</a></li>
    <li class="del"><a href="#delete">Delete</a></li>
    <li class="copypath"><a href="#copypath">Copypath</a></li>
</ul>

我想禁用添加,重命名和删除链接 只需从用户界面禁用

用户应该能够看到它,但不应该执行任何点击事件(链接应该变灰)。

我用过

  1. disable="disabled"

  2. display =none;

  3. 但他们没有达到目的。

    这会有什么其他方法吗?

6 个答案:

答案 0 :(得分:0)

使用pointer-events:none;

<a  style='pointer-events:none;background-color:#CFCFCF;color:#000' href="javascript: void(0)">Delete</a>

答案 1 :(得分:0)

如果您使用的是jQuery,则可能需要执行此操作

$(function() {
 $('#addbtn').click(function(e) {
    e.preventDefault();
    //do other stuff when a click happens
 });
}

More Information, Stackoverflow Question

答案 2 :(得分:0)

我会使用此CSS来直观地禁用链接:

.disable {
    position: relative;
}
.disable:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}
.disable a {
    color: gray;
    cursor: default;
}

然后,为了禁用链接,您需要在相应的disable上添加一个类li

<li class="download disable"><a href="#download">Download</a></li>

它的作用基本上是覆盖了透明伪元素:before的链接。

另一种解决方案可能是使用pointer-events: none规则,但在IE中却没有得到很好的支持。

演示:http://jsfiddle.net/LPz2Z/1/

答案 3 :(得分:0)

我不确定这是最好的方法,但它可以做到这一点,

如果您使用

pointer-events: none; in your css 

或者如果你想从javascript调用它:

elem.style.display.pointerEvents = "none";

禁止与用户互动。

答案 4 :(得分:0)

有几个选择。使用普通的旧javascript,您可以这样做,例如:

<a href="mylink.html" onclick="return false;">Download</a>

<a href="javascript: void(0);">Download</a>

使用jQuery,您可以轻松禁用许多链接:

<a href="mylink.html" class="disabled">Download</a>
<a href="anotherlink.html" class="disabled">Delete</a>

<script>
    jQuery(document).ready(function($) {
        $('a.disabled').on('click', function(e) {
            e.preventDefault();
        });
    });
</script>

你甚至可以使用CSS!

<a href="mylink.html" class="disabled">Download</a>
<style type="text/css">
    a.disabled { pointer-events: none; }
</style>

虽然,你不会感到惊讶,IE&lt; = v9(如果我是正确的)不支持这个...并且在大多数浏览器上你不能强制浏览器使用指针作为游标...

<强> All in a fiddle demo!

答案 5 :(得分:0)

即便如此,

也是如此
$("#fileMenu").disableContextMenuItems('#add');
  $("#fileMenu").disableContextMenuItems('#rename');
  $("#fileMenu").disableContextMenuItems('#delete');

因为我在ul列表中使用了contextMenu类。