[問題] 提升傳統javascript執行效率的方法

作者: red0whale (red whale)   2017-02-17 16:32:02
像jquery,原先如果是這樣:
$("#div").css({"background-color":"#00FF00","color":"#FF0000"});
$("#div").animate({"width":"200px","height":"100px"},1000);
$("#div").on("click",function(){
console.log("clicked");
});
要簡化並提升它的執行效率的話就可以使用「方法鏈串」:(可以省去不必要的重複分析
目標元素)
$("#div").css({"background-color":"#00FF00","color":"#FF0000"}).animate({"widt
h":"200px","height":"100px"},1000).on("click",function(){
console.log("clicked");
});
那如果是傳統的javascript呢?
document.getElementById("div").style.backgroundColor = "#00FF00";
document.getElementById("div").style.color = "#FF0000";
....
是不是只要將「document.getElementById("div")」用一個變數取代就可以了
還是要用其他方法?
謝謝
作者: MangoTW (不在線上)   2017-02-17 20:26:00
關鍵不在鏈式寫法而在你select幾次,變數避免重複select
作者: Qiqi (潑潑)   2017-02-17 20:48:00
你想一下怎麼自己實做chain的設計,你就可以回答你的問題了但一樓的回應才是重點
作者: async (非同步)   2017-02-18 15:31:00
你已經自己解答了

Links booklink

Contact Us: admin [ a t ] ucptt.com