導航:首頁 > 編程語言 > spketjsp

spketjsp

發布時間:2023-08-09 00:19:20

A. myeclipse 10 jsp 和js 文件代碼提示問題

|

myeclipse 10 jsp 和js 文件代碼提示設置正確就可以在編寫代碼的時候正確提示了。

設置方法:

1、依次打開Window | Preferences | Web | javaScript | Editor | Content Assist.

Insertion

Completion Inserts/Completion Overwrites - Select whether choosing an item from the Content Assist list will cause new code to be entered or existing code to be overwritten.

Insert single proposals automatically -If enabled, the content assist suggestion will be inserted automatically when only one content assist option exists

Insert common prefixes automatically - If enabled, Content Assist will automatically insert the common prefix of all possible completions similar to Unix shell expansion. This can be used repeatedly, even while the Content Assist window is being displayed.

Fill argument names on completion - If enabled, Content Assist will add arguments when completing a method.

Guess filled function arguments - If enabled, Content Assist will fill the arguments with the best matching function, according to the context.

Sorting and Filtering

Sort proposals - Select how the proposals should be sorted in the Content Assist list.

Hide proposals not visible in the invocation context - If enabled, the Java element proposals are limited by the rules of visibility. For example, private field proposals of other classes would not be displayed.

Show camel case matches - If enabled, camel case matches are displayed (e.g. NPE is expanded to NullPointerException).

Hide forbidden references - If enabled, references to JavaScript elements forbidden by access rules are not displayed.

Hide discouraged references - If enabled, references to JavaScript elements discouraged by access rules are not displayed.

Hide deprecated references - If enabled, references to deprecated JavaScript elements are not displayed.

Auto-activation

Enable auto activation - If enabled, the Content Assist list will automatically be displayed when the first letters of an element are typed.

B. jsp中的javascript代碼無法提示

jsp中的javascript代碼提示要在eclipse中設置:

1.打開eclipse,找到菜單欄的window->Preferences,在彈出的窗口中找到Java->Editor->Content Assist,點擊後在右側的窗口中找到Auto Activation-->Enable auto activation,在Auto activation triggers for Java:一欄中輸入值:zjava,點擊右下角的Apply,然後點擊OK;

3.選擇左上角菜單:File->Export,在彈出的窗口中選擇General->Preferences,選擇文件的保存路徑,任意路徑即可,點擊Finish,然後去你剛才保存的文件下查看,不出意料的話會有一個這樣的文件:eclipse_js.epf;

4.打開eclipse_js.epf文件,找到zjava,將其值改為:

.

然後找到zjs,將其值改為:

.

5.返回eclipse,選擇左上角菜單File->Import,選擇General->Preferences,找到剛才的保存的文件,選擇文件完成後點擊Finish,最終設置完成。

C. 怎麼設置myeclipse,在編寫javascript代碼是自動提示

MyEclipse 提示設置JSP自動提示
1、快捷鍵提示代碼
window-->Preferences的General-->Keys下修改Content Assist的快捷鍵為Alt+/,這樣就可以通過快捷鍵得到提示代碼
一般,快捷鍵默認就是Alt+/
2、自動提示
window-->preferences的java->Editor->Code Assist,選上Enable auto activation選擇框
3、增強自動提示
如果在上面2中的Auto activation triggers for Java中只有.就是說只有在輸入.之後才會自動提示,可以修改一下這個配置,方法:
* 打開MyEclipse,進入window-->Preferences,選擇java-->Editor-->Content Assist
* 在Auto Activation triggers for java這個選項的.後隨便加幾個字母,例如aaa方便後面的查找修改,點擊OK按鈕
* 在File-->Export彈出的窗口中選擇Perferences,點擊下一步,選擇導出文件路徑
* 用記事本打開剛剛保存的*.epf文件
* ctrl + F快捷鍵查找剛輸入的.aaa
* 把.aaa改成.abcdefghijklmnopqrstuvwxyz(,保存,關閉記事本)
*回到MyEclipse界面,File-->Import,在彈出的窗口中選擇Perferences,下一步,選擇剛修改的*.epf文件,點擊「打開」,點擊「Finish」

D. 在js代碼自動提示中,點後邊自動提示出不來函數,等,已經配置spket還是沒有提示

提示java代碼可以用ALT+/ 鍵就可以了(前提是你要把你需要的類或方法的首字母打出來)..下面是我收集的一些快捷鍵你可以參考下
Ctrl+M 當前窗口最大化
Ctrl+F7 視窗口切換
Ctrl+F8 模式切換
Ctrl+F6 編輯窗口切換(手指張得太大不雅觀啊)
Ctrl+E 編輯窗口切換(這個比較文雅點 :) )
Alt+← 前一個編輯的頁面
Alt+→ 下一個編輯的頁面
Ctrl+Alt+↓ 復制(增加)當前行到下一行
Ctrl+Alt+↑ 復制(增加)當前行到上一行
Alt+↓ 當前行和下面一行交互位置(用不著剪切了)
Alt+↑ 當前行和上面一行交互位置
Ctrl+D 刪除當前行
Alt+Enter 顯示當前選擇文件的屬性
Shift+Enter 在當前行插入空行(下一行)
Shift+Ctrl+Enter 在當前行插入空行(上一行)
Ctrl+Q 定位到最後編輯的地方
Ctrl+L 定位在具體某行
Ctrl+/ 注釋當前行(可多行),再按則取消注釋
Ctrl+Shift+R 找文件
Ctrl+Shift+T 找類
Ctrl+K 選中的Word快速定位到下一個
Ctrl+Shift+K 選中的Word快速定位到上一個
Ctrl+Shift+U 選中後列出查詢到的結果
Ctrl+/(小鍵盤) 折疊當前類中的所有代碼
Ctrl+×(小鍵盤) 展開當前類中的所有代碼
Ctrl+Shift+P 定位到對於的匹配符(如{},())
CTRL+SHIFT+X 切換字元的大小寫(大寫)
CTRL+SHIFT+Y 切換字元的大小寫(小寫)
Ctrl+1 當某行出錯時或警告時,跳出幫助
Ctrl+Shift+F 格式排版
Alt+Shift+R 重命名 (改量和類名時很方便)
Alt+Shift+C 修改函數結
Alt+Shift+M 重構方法 (選中要重構方法,再生成個新方法)
Alt+Shift+Z 重構恢復
Ctrl+W 關閉當前窗口
Ctrl+Shift+F4 關閉所有打開的窗口
Ctrl+Shift+O : import相關類,同時若已經import的類,沒有被用到,就刪除。

如果想在jsp提示的話.. 打出來< 就有提示了..
<>中的參數還是可以使用alt+/鍵來提示的..

閱讀全文

與spketjsp相關的資料

熱點內容
使用土地的有關證明文件包含哪些 瀏覽:493
數據標注哪裡可以接 瀏覽:482
在家自學編程下什麼學 瀏覽:705
最近很火的app軟體是什麼軟體 瀏覽:862
ai文字工具 瀏覽:157
蘭博玩游戲路徑怎麼選擇正確文件 瀏覽:972
淘寶直通車恢復老版本 瀏覽:510
播放草莓的圖片我都文件 瀏覽:55
微信大文件打不開 瀏覽:767
家裝合同准備哪些文件 瀏覽:296
應用bat合並excel文件 瀏覽:984
迅雷影音文件夾 瀏覽:109
makefile的文件路徑 瀏覽:392
計算機程序文件名擴展名為 瀏覽:982
網路游戲推廣策劃案 瀏覽:609
替換所有文件內容的代碼 瀏覽:960
不是常用數據模型有哪些 瀏覽:426
aspcms版本號 瀏覽:835
安卓怎麼用數據流量下載軟體 瀏覽:553
大眾手動空調數據流通道號是多少 瀏覽:303

友情鏈接