2016-03-18 70 views
0

如何創建一個JavaScript函數,當任何人搜索的東西時工作?我有這樣的一個表格:當Shearching運行Javascript功能

<form> 
<label for="arama" id="aramab">Skin Ara:</label> 
<input id="arama" type="search" name="arama" autofocus autocomplete="on" placeholder="Örn.Notch"></input> 
</form> 

我該如何使用jQuery或Javascript來做到這一點?

+1

任何辦法可以讓你的問題更清晰一點?我很難理解你想要做什麼。此外jquery是JavaScript,它只是一個構建在它之上的框架。 –

+0

即時對不起,我的英語不好 –

回答

0

使用此代碼

document.getElementById("arama").onkeyup = function(){ 
    var input = document.getElementById("arama").value; 
    console.log(input) 
}