簡體   English   中英

更改字體真棒圖標 onclick 功能

[英]Changing font awesome icon onclick function

當用戶單擊按鈕時,我試圖將 .fa-eye 交換為 fa-eye-slash。 我做錯了什么? 它不起作用。

HTML代碼:

<button onclick="arata_ascunde(this);" style="align:right;font-size:13px" 
class="btn btn-info " id="show_hide_bt" style="background-color:#00b0ff;"><i 
class="fa fa-eye"></i> Show</button>

Javascript代碼:

 function arata_ascunde(button) {
     var x = document.getElementById('showhide');
     var change = document.getElementById("show_hide_bt");

     if (x.style.display === 'none') {
       x.style.display = 'block';
     } else {
       x.style.display = 'none';
     }

     if (change.innerHTML == ' Show')
            {

                change.innerHTML = ' Hide';
                $(button).find('i').toggleClass('fa-eye').toggleClass('fa-eye-slash');
            }
            else {

                change.innerHTML = ' Show';
                $(button).find('i').toggleClass('fa-eye-slash').toggleClass('fa-eye');
            }


  }

 document.querySelector('button').addEventListener('click', function() { const icon = this.querySelector('i'); const text = this.querySelector('span'); if (icon.classList.contains('fa-eye')) { icon.classList.remove('fa-eye'); icon.classList.add('fa-eye-slash'); text.innerHTML = 'Hide'; } else { icon.classList.remove('fa-eye-slash'); icon.classList.add('fa-eye'); text.innerHTML = 'Show'; } });
 <link href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet" /> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" /> <button><i class="fa fa-eye"></i> <span>Show</span></button>

既然你已經插入了 Jquery。 您可以通過 Jquery 輕松完成此操作。

<button style="align:right;font-size:13px" class="btn btn-info" id="show_hide_bt" style="background-color:#00b0ff;"><i 
class="fa fa-eye"></i> Show</button>

現在這個 Jquery 代碼是

$("#show_hide_bt").click(function(event) {
    $(this).find('i').toggleClass('fa-eye-slash');
});

如果要刪除 fa-eye 類,則可以鏈接另一個 toggleClass 或再次添加

$(this).find('i').toggleClass('fa-eye');

或者在一行中添加它。 如果這沒有幫助,請發表評論

$(this).find('i').toggleClass('fa-eye-slash').toggleClass('fa-eye');

 function arata_ascunde(button) { var x = $('#showhide'); $(button).find('i').remove(); if ($(button).text().trim() == 'Show') { $(button).html($('<i/>',{class:'fa fa-eye-slash'})).append(' Hide'); x.fadeIn(); } else { $(button).html($('<i/>',{class:'fa fa-eye'})).append(' Show'); x.fadeOut(); } }
 <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <button onclick="arata_ascunde(this);" style="align:right;font-size:13px" class="btn btn-info " id="show_hide_bt" style="background-color:#00b0ff;"> <i class="fa fa-eye"></i> Show </button> <div id="showhide" style="background-color:red;width:100px;height:100px;margin:10px;display:none;"></div>

我認為你可以通過簡化你的 HTML 和 JQuery 來得到你想要的結果。

試試這個片段:

 $(document).ready(() => { const button = $(".btn"); button.click(() => { if (button.text() == " Show") { button.html('<i class="fa fa-eye-slash"></i> Hide'); } else { button.html('<i class="fa fa-eye"></i> Show'); } }); });
 <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <button class='btn btn-default'><i class="fa fa-eye"></i> Show</button>

你可以像這樣切換類: $('i').toggleClass("fa-eye-slash fa-eye"); ,但由於您也想更改文本,我會推薦上面的解決方案。

 function myFunction(x) { x.classList.toggle("fa-thumbs-down"); }
 .fa { font-size: 50px; cursor: pointer; user-select: none; } .fa:hover { color: darkblue; }
 <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/> <p>Click on the icon to toggle between thumbs-up and thumbs-down (like/dislike):</p> <i onclick="myFunction(this)" class="fa fa-thumbs-up"></i>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM