disabled

生活百科 2023-01-17 20:00生活百科www.aizhengw.cn

disabled

disabled是一个英语单词,意思是残废的,有缺陷的, 丧失能力的。

基本介绍

  • 中文名disabled
  • 过去式disabled
  • 过去分词disabled
  • 现在分词disabling

基本信息

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 表单
<form action="demo_form.html">  First name: <input type="text" name="fname"><br>  Last name: <input type="text" name="lname" disabled><br>  <input type="submit" value="Submit"></form>

Copyright@2015-2025 www.aizhengw.cn 癌症网版板所有