
2007年2月27日
·?文件:file
o?"開始"?區:fileStart
o?"新建"菜單內部的"附加"組標志:?new/additions
o?"新建"區,在"新建"菜單下面:new.ext
o?"關閉"?區:close.ext
o?"保存"?區:save.ext
o?"打印"?區:print.ext
o?"打開"?區:open.ext
o?"導入"?區:import.ext
o?"附加"?區:additions
o?"最近的文檔"?區:mru
o?"結束"?區:fileEnd
·?編輯:?edit
o?"開始"?區:editStart
o?"撤銷"?區:undo.ext
o?"剪切"?區:cut.ext
o?"查找"?區:find.ext
o?"添加"?區:add.ext
o?"結束"?區(有時不是結束):fileEnd
o?"附加"?區:additions
·?源:?org.eclipse.jdt.ui.source.menu
??????
??????o?編輯:editGroup
??
??????o?倒入:importGroup
??????o?代碼生成:generateGroup
??????o?代碼相關:codeGroup
??????o?轉換:convertGroup
·?重構:?org.eclipse.jdt.ui.refactoring.menu
·?導航:?navigate
o?"開始"區:navStart
o?"Go?To"菜單中的"附加"組標志:?goTo/additions
o?"打開"區(有四個):open.ext,?open.ext2,?open.ext3,?and?open.ext4
o?"顯示"區(有四個):show.ext,?show.ext2,?show.ext3,?and?show.ext4
o?"附加"區:additions
o?"結束"區:navEnd
·?搜索:?org.eclipse.search.menu
·?項目:?project
o?"開始"區:projStart
o?"打開"區:open.ext
o?"建立"區:build.ext
o?"附加"區:additions
o?"結束"區:projEnd
·?載入:?launch
·?運行:?org.eclipse.ui.run
·?"附加"組標志:additions
·?窗口:?window
o?"附加"區:additions
o?"結束"區:additionsend
·?幫助:?help
o?"開始"區:helpStart
o?"主要組"區:group.main.ext
o?"教程組"區:group.tutorials
o?"工具組"區:group.tools
o?"更新組"區:group.updates
o?"結束"區(有時候不是結束):?helpEnd
o?"附加"區:additions
o?"關于組"區:group.about.ext?
posted @
2007-02-27 14:18 sparkler 閱讀(700) |
評論 (1) |
編輯 收藏

2006年11月16日
使用Ajax中遇到的一個問題,手動刷新頁面時,沒有提交到后臺處理,總顯示第一次載入的數據。
頁頭已加入防緩存設置:
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
可結果依舊。
baidu了一下,找到相關資料。
解決方法:讓提交的URL每次都向服務器端發送請求,而不是使用緩存。
方法一:加時間戳 var url = BaseURL + "&timeStamp=" + new Date().getTime();
方法二:加隨機數 var url = BaseURL + "&r=" + Math.random();
方法三:自已想。。。
posted @
2006-11-16 16:03 sparkler 閱讀(294) |
評論 (0) |
編輯 收藏