disabled

disabled

disabled是一個英語單詞,意思是殘廢的,有缺陷的, 喪失能力的。

基本信息

基本信息

adj. 形容詞

1. 殘廢的,有缺陷的, 喪失能力

vt.及物動詞

1.使無能力, 使殘廢。

發音

dis'eibld

例句

The accident disabled him for work.

這起事故使他喪失了工作能力。

One bomb can disable a ship.

一顆炸彈就能炸毀一艘船。

釋義

Disabled 是最廣為接受的詞語,指殘疾人或傷殘人。

handicapped 稍有些過時,許多人認為該詞有冒犯意思。人們喜歡用

disability而非handicap。

disabled people 比 the disabled 更為所人接受,原因是聽起來比較個人化。

disabled 和 disability 與其它詞連用可以表示智力狀況:

mentally disabled 有智力缺陷;

learning disabilities 學習障礙。

網路上還有很多解釋:

1.禁用

2. 殘廢的,殘疾的

3. 禁用此程式

4. 傷殘的;使失去戰鬥力的

同義詞

及物動詞 vt.

使無能;使殘廢

crippledebilitateenfeebleweaken

反義詞

enable

函式用法

函式名: disable

功 能: 禁止中斷

用 法: void disable(void);

程式例:

/***NOTE: This is an interrupt service

routine. You cannot compile this program

with Test Stack Overflow turned on and

get an executable file that operates

correctly. */

#include <stdio.h>

#include <dos.h>

#include <conio.h>

#define INTR 0X1C /* The clock tick

interrupt */

void interrupt ( *oldhandler)(void);

int count=0;

void interrupt handler(void)

{

/* disable interrupts during the handling of

the interrupt */

disable();

/* increase the global counter */

count++;

/* reenable interrupts at the end of the

handler */

enable();

/* call the old routine */

oldhandler();

}

int main(void)

{

/* save the old interrupt vector */

oldhandler = getvect(INTR);

/* install the new interrupt handler */

setvect(INTR, handler);

/* loop until the counter exceeds 20 */

while (count < 20)

printf("count is %d\n",count);

/* reset the old interrupt handler */

setvect(INTR, oldhandler);

return 0;

}

屬性

定義和用法

disabled 屬性是一個布爾屬性。

disabled 屬性規定應該禁用的 <input> 元素。

被禁用的 input 元素是無法使用和無法點擊的。

disabled 屬性進行設定,使用戶在滿足某些條件時(比如選中複選框,等等)才能使用 <input> 元素。然後,可使用 JavaScript 來刪除 disabled 值,使該<input> 元素變為可用的狀態。

提示:表單中被禁用的 <input> 元素不會被提交。

注意:disabled 屬性不適用於 <input type="hidden">。

HTML 與 XHTML 之間的區別

在 XHTML 中,不允許屬性最小化,disabled 屬性必須定義為 <input disabled="disabled" />。

語法

<input disabled>

實例

帶有已禁用的輸入欄位的 HTML 表單:

相關詞條

相關搜尋

熱門詞條

聯絡我們