我有這樣的代碼:我如何寫,如果'不'在Javascript
el("inp").onpropertychange=function(){
addScript("http://www.google.nl/complete/search?callback=suggest&q="+this.value);
};
我要排除的箭頭鍵。據我所知我可以做到這一點與if (!(condition)) {action}
但是我怎麼寫在上面的代碼?
我有這樣的代碼:我如何寫,如果'不'在Javascript
el("inp").onpropertychange=function(){
addScript("http://www.google.nl/complete/search?callback=suggest&q="+this.value);
};
我要排除的箭頭鍵。據我所知我可以做到這一點與if (!(condition)) {action}
但是我怎麼寫在上面的代碼?
嗯,箭頭鍵...? – BoltClock
你是說你想在傳遞給google之前替換this.value中的尖括號? –
我正在討論向上和向下鍵 – Youss