2016-01-10 290 views
0

我有一個JSP頁面,並希望在我的Eclipse編輯器中進行自動合併。 但它不起作用。JQuery的自動完成Javascript在Eclipse IDE的JSP中不起作用

  • 我已經安裝了JSDT的jQuery插件

enter image description here

  • 我已經添加了JS作爲圖書館

enter image description here

我引用在JavaScript的JSP我頁:

<script type="text/javascript"> 
    window.onload = function() { 
    $(document).ready(function() { 



     $("a").<HERE I PRESS CTRL-SPACE, BUT NOTHINGN HAPPENS> 
    }); 
}; 
</script> 

任何幫助:

<script type="text/javascript" src="http://localhost:8080/context/js/jquery-1.12.0.js"></script> 

但我不編碼時有autocomplition?

+0

AutoComplete是「jQuery UI」包含的一個功能。 –

+0

我不知道我在做什麼,但我現在通過Maven(pom.xml)添加了jquery-ui-core-6.2.2.jar。重新啓動Eclipse後,我仍然無法自動完成我的jQuery語法。 –

回答

0

安裝JSDT jQuery和添加jQuery庫後,在同一窗口中,你必須設置源,如下面

add *.js *.html

然後它在你的js和html文件中工作,祝你好運!