2
我想要刪除並添加一個圖標取決於用戶如何調整比例寬度的一部分我的導航欄。分離jQuery不工作時重新窗口調整大小
的JavaScript:
$(function() {
var $window = $(window);
var store;
function detach() {
if ($window.width() > 720) {
store = $(".dropdown").detach();
}
else {
$("nav").append(store);
store = null;
}
}
detach();
$(window).on('resize', function() {
detach();
});
});
我想刪除的導航欄:
<div class="dropdown">
<button class="dropbtn"><i class="fa fa-bars" aria-hidden="true"></i></button>
<div class="dropdown-content">
<a href="#">Login</a>
<a href="#">Register</a>
</div>
</div>
這個腳本在「分離」從導航欄上的圖標成功,但是當用戶對其進行縮放退後,它不會重新連接它。