
下一頁 列印 在地資訊 開啟網頁
document.getElementById('next').onclick = function(){
window.history.forward();
}
document.getElementById('print').onclick = function(){
window.print();
}
document.getElementById('local').onclick = function(){
console.log(location);
}
document.getElementById('open').onclick = function(){
window.open('htttp://www.yahoo.com.tw');
}
自適應圖片應用
1.預設載入先RUN過一次
2.隨時做觸發
document.querySelector('.hero').style.height = window.innerHeight+"px"
window.onresize = function(){
document.querySelector('.hero').style.height = window.innerHeight+"px"
}