如何使用css将JavaScript onclick事件设置为类

时间:2011-01-03 22:01:29

标签: javascript css

假设我希望每当用户点击任何链接时,会弹出一个显示“hohoho”的警告。 我是否需要在每个链接中添加onclick="alert('hohoho')",还是可以使用CSS设置它以使其适用于每个链接?

8 个答案:

答案 0 :(得分:62)

你不能只使用CSS,但你可以使用Javascript和(可选)jQuery来完成。

如果你想在没有jQuery的情况下这样做:

<script>
    window.onload = function() {
        var anchors = document.getElementsByTagName('a');
        for(var i = 0; i < anchors.length; i++) {
            var anchor = anchors[i];
            anchor.onclick = function() {
                alert('ho ho ho');
            }
        }
    }
</script>

并且不使用jQuery,只在特定的类(例如:hohoho)上执行:

<script>
    window.onload = function() {
        var anchors = document.getElementsByTagName('a');
        for(var i = 0; i < anchors.length; i++) {
            var anchor = anchors[i];
            if(/\bhohoho\b/).match(anchor.className)) {
                anchor.onclick = function() {
                    alert('ho ho ho');
                }
            }
        }
    }
</script>

如果您可以使用jQuery,那么您可以为所有锚点执行此操作:

<script>
    $(document).ready(function() {
        $('a').click(function() {
            alert('ho ho ho');
        });
    });
</script>

此jQuery片段仅将其应用于具有特定类的锚点:

<script>
    $(document).ready(function() {
        $('a.hohoho').click(function() {
            alert('ho ho ho');
        });
    });
</script>

答案 1 :(得分:30)

你可以通过稍微改变一点来做到这一点。检测单击主体的时间(document.body.onclick - 即页面上的任何内容),然后检查单击的元素(event.srcElement / e.target)是否有类,并且该类名是否为你想要的:

document.body.onclick = function(e) {   //when the document body is clicked
    if (window.event) {
        e = event.srcElement;           //assign the element clicked to e (IE 6-8)
    }
    else {
        e = e.target;                   //assign the element clicked to e
    }

    if (e.className && e.className.indexOf('someclass') != -1) {
        //if the element has a class name, and that is 'someclass' then...
        alert('hohoho');
    }
}

或者更简洁的上述版本:

document.body.onclick= function(e){
   e=window.event? event.srcElement: e.target;
   if(e.className && e.className.indexOf('someclass')!=-1)alert('hohoho');
}

答案 2 :(得分:7)

你可以用jQuery做到。

$('.myClass').click(function() {
  alert('hohoho');
});

答案 3 :(得分:4)

无法通过CSS完成,因为CSS仅更改演示文稿(例如,只有Javascript才能弹出警报)。我强烈建议你查看一个名为jQuery的Javascript库,因为它可以做一些像这样简单的事情:

$(document).ready(function(){
  $("a").click(function(){
    alert("hohoho");
  });
});

答案 4 :(得分:2)

这是我通过CSS的解决方案,它根本不使用任何JavaScript

HTML:

<a href="#openModal">Open Modal</a>

<div id="openModal" class="modalDialog">
        <div>   <a href="#close" title="Close" class="close">X</a>

                <h2>Modal Box</h2>

            <p>This is a sample modal box that can be created using the powers of CSS3.</p>
            <p>You could do a lot of things here like have a pop-up ad that shows when your website loads, or create a login/register form for users.</p>
        </div>
    </div>

CSS:

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover {
    background: #00d9ff;
}

CSS alert No JavaScript Just pure HTML and CSS

我相信它会像你一样为你做伎俩

答案 5 :(得分:1)

许多第三方JavaScript库允许您选择应用了特定名称的CSS类的所有元素。然后,您可以迭代这些元素并动态附加处理程序。

没有特定于CSS的方式来执行此操作。

JQuery中,您可以执行以下操作:

$(".myCssClass").click(function() { alert("hohoho"); });

答案 6 :(得分:1)

遵循 JCOC611 建议:

window.onload = function() {    
    let elements = document.getElementsByClassName("someClassName");

    for(let i = 0; i < elements.length; i++) {
        elements[i].onclick = function () {
            alert("Clicked in an element of the class.");
        }
    }
};

答案 7 :(得分:0)

在问题标题中询问“班级”时,答案为const arr1 = [ {id: 1, favorite: false}, {id: 2, favorite: false}, {id: 3, favorite: false} ]; const arr2 = [1, 3]; const res = arr1.map(e => ({...e, favorite: arr2.includes(e.id)}) ); console.log(res);

getElementsByClassName