我有HTML:jQuery的淡入淡出和不工作
var $button = $('#trigger');
\t var $to_top = $('#to_top');
\t $button.on('click', function() {
\t \t $to_top.slideToggle();
\t });
#to_top {
\t position: fixed;
\t bottom: 20px;
\t right: 20px;
\t background-color: #9B9EA0;
\t float: right;
\t width: 56px;
\t height: 56px;
\t fill: white;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="to_top">
\t <svg>
\t \t <path d="M16.652 37.273l13.102-12.045L42.86 37.273l3.796-2.563-16.902-15.534L12.858 34.71"/>
\t </svg>
</div>
<button id="trigger">FadeIt</button>
的問題是,當我按一下按鈕沒有任何反應。我的代碼有什麼問題。
現在看到你的問題,並告訴什麼是行不通的? – ab29007
我想,你需要Jquery庫的參考。 @kittyCat新增 – Vikrant
是的....但在我的網站上它不工作,我的控制檯上沒有任何東西出現。 – bashkovpd