單詞
發音
remove 英音:[ri'mu:v]美音:[rɪ'muv]
翻譯
及物動詞 vt.
⒈移動,搬開;調動[(+from/to)]Students removed several desks to another classroom.
學生們把幾張書桌搬到另外一間教室。
She removed the painting to another wall.
她把畫搬到另一面牆上。
⒉脫掉;去掉,消除[(+from)]
She saw he had removed his glasses.
她看到他摘下了他的眼鏡。
⒊使離去;把...免職;撤去[(+from)]
He was removed from the post.
他被解僱了。
The corrupt official was removed from office.
這個貪官被罷了職。
⒋【婉】殺死,殺害
⒌【 律】移交(案件)
⒍【引申】清除(雜草等)
不及物動詞 vi.
⒈遷移,搬家[(+from/to)]
The manager's office has removed to another building.
經理的辦公室已搬到另外一幢大樓里。
⒉【書】離開
⒊移動
名詞
n. [C]
⒈距離,間隔;一步之差[(+from)]
Your action seems several removes from reality.
你的行動似乎有些脫離實際。
⒉移動;遷移,搬家
⒊【主英】英國學校中學校升級前被安排的班級;升級[the S] 形容詞:
removal。
如removal man,譯為搬運工
C語言
簡介
功 能: 刪除一個檔案,相當於
unlink函式,但是如果它的filename參數是一個目錄的話,其作用就相當於
rmdir函式。
返回值:如果刪除成功,remove返回0,否則返回
EOF(-1)。
程式例
#include <stdio.h>int main(void){ char file[80]; /* prompt for filename to delete */ printf("File to delete: "); gets(file); /* delete file */ if(remove(file) == 0) printf("Removed%s.\n",file); else perror("remove"); return0;}
從一個 Dictionary 對象中刪除一個主鍵,條目對。
object.Remove(key)
參數
object 必選項。總是一個 Dictionary 對象的名稱。
key 必選項。key 與要從 Dictionary 對象中刪除的主鍵,條目對相關聯。
說明
假如所指定的主鍵,條目對不存在,那么將導致一個錯誤。
下面這段代碼說明了 Remove 方法的用法:
vara,d,i,s;//創建一些變數。d=newActiveXObject("Scripting.Dictionary");d.Add("a","Athens");//添加一些主鍵條目對。d.Add("b","Belgrade");d.Add("c","Cairo");...
d.Remove("b"); // 刪除第二對主鍵條目對。
代碼
概述
從DOM中刪除所有匹配的元素。
這個方法不會把匹配的元素從
jQuery對象中刪除,因而可以在將來再使用這些匹配的元素。
返值
jQuery
參數
expr(String) : (可選) 用於篩選元素的jQuery表達式
示例
從DOM中把所有段落刪除
HTML 代碼:
<p>Hello</p> how are <p>you?</p>
jQuery 代碼:
$("p").remove();
結果:
how are