我想要的功能,這樣的庫(類似於jQuery是做)的JavaScript返回默認值
var myLib = function (idOfAnElement){
var myElement = document.getElementById(idOfAnElement);
return{
getHeight: function(){
return myElement.style.height;
},
getWidth: function(){
return myElement.style.width;
}
}
}
我的問題是,我不知道怎麼回
myElement
在默認情況下,如果沒有所謂的喜歡
myLib('myId').getHeight; // Returns Height
myLib('myId') // Is supposed to return the HTML-Element with id = 'myId'
你嘗試過什麼嗎? – fcalderan 2014-11-13 11:20:18