七、jQuery 常用小技巧
7-44 attr() - 動態增加 HTML 標籤屬性
$(document).ready(function () {
// 修改 img 屬性
$('img').attr('width', '50px');
});7-45 remove() - 移除網頁標籤工具
7-46 top 滑動效果
<style>
.top {
position: fixed;
bottom: 0;
right: 0;
}
</style>
<script>
$(document).ready(function () {
// 點擊後,往上有滾動效果
$('.top a').click(function (e) {
e.preventDefault();
$('html,body').animate( {
scrollTop: 0
}, 3000);
});
});
</script>7-47 使用 fontAwesome 動態加入連結 icon
Quiz 6: 第六章測驗

Last updated