Reset button что это

reset button

Смотреть что такое «reset button» в других словарях:

reset button — UK US noun [C] (also reset) IT ► a button or switch on a computer that allows you to turn it off and then on again when a program does not work correctly … Financial and business terms

Reset button — In electronics and technology, a reset button is a button that can reset a device. On video game consoles, the reset button restarts the game, losing the player s unsaved progress. On computers, the reset button clears the memory and reboots the… … Wikipedia

reset button — noun a push button that you press to activate the reset mechanism • Hypernyms: ↑push button, ↑push, ↑button • Part Holonyms: ↑reset * * * reset button, 1. a switch used to restore electrical current to a machine after interruption by an internal… … Useful english dictionary

reset button — startup button, switch which is pressed in order to stop computer operations and restart the computer … English contemporary dictionary

reset button — noun A plot device that interrupts continuity in works of fiction, by returning characters and situations to the status quo they held before certain changes were introduced … Wiktionary

reset button — A switch which puts the configuration of a component back to its standard setting … Dictionary of automotive terms

Reset button technique — The reset button technique (based on the idea of status quo ante ) is a plot device that interrupts continuity in works of fiction. Simply put, use of a reset button device returns all characters and situations to the status quo they held before… … Wikipedia

Reset-Schalter — [engl. reset button], Tastenschalter, dessen Betätigung einen Reset auslöst. Dieser Schalter war bei älteren Computern fast immer vorhanden, bei modernen Geräten wird bisweilen auf ihn verzichtet … Universal-Lexikon

Reset (computing) — In a computer or data transmission system, to reset means to clear any pending errors or events and bring a system to normal condition or initial state usually in a controlled manner. It is usually done in response to an error condition when it… … Wikipedia

reset generation — (REE.set jen.uh.ray.shun) n. Young people who, when a situation becomes difficult or burdensome, quit and start over again in a different situation. Example Citations: Hey coach! Two strikes. two outs. last inning. we re down by five, can I… … New words

button — A small disk or knob which activates something electrical when it is pressed such as a starter button. Also see abs override button eject button frequency scan button horn button memory button override button preset station button … Dictionary of automotive terms

Источник

reset button

1 reset button

Тематики

Синонимы

кнопка сброса
кнопка перезапуска


[Е.С.Алексеев, А.А.Мячев. Англо-русский толковый словарь по системотехнике ЭВМ. Москва 1993]

Тематики

Синонимы

2 Reset button

3 Reset button

4 reset button

5 reset button

6 reset button

7 reset button

8 reset button

9 reset button

10 Reset button

11 reset button

12 reset button

13 reset button

14 Reset button

15 reset button

16 reset button

17 reset button

18 reset button

19 reset button

20 reset button

См. также в других словарях:

reset button — UK US noun [C] (also reset) IT ► a button or switch on a computer that allows you to turn it off and then on again when a program does not work correctly … Financial and business terms

Reset button — In electronics and technology, a reset button is a button that can reset a device. On video game consoles, the reset button restarts the game, losing the player s unsaved progress. On computers, the reset button clears the memory and reboots the… … Wikipedia

reset button — noun a push button that you press to activate the reset mechanism • Hypernyms: ↑push button, ↑push, ↑button • Part Holonyms: ↑reset * * * reset button, 1. a switch used to restore electrical current to a machine after interruption by an internal… … Useful english dictionary

reset button — startup button, switch which is pressed in order to stop computer operations and restart the computer … English contemporary dictionary

reset button — noun A plot device that interrupts continuity in works of fiction, by returning characters and situations to the status quo they held before certain changes were introduced … Wiktionary

reset button — A switch which puts the configuration of a component back to its standard setting … Dictionary of automotive terms

Reset button technique — The reset button technique (based on the idea of status quo ante ) is a plot device that interrupts continuity in works of fiction. Simply put, use of a reset button device returns all characters and situations to the status quo they held before… … Wikipedia

Reset-Schalter — [engl. reset button], Tastenschalter, dessen Betätigung einen Reset auslöst. Dieser Schalter war bei älteren Computern fast immer vorhanden, bei modernen Geräten wird bisweilen auf ihn verzichtet … Universal-Lexikon

Reset (computing) — In a computer or data transmission system, to reset means to clear any pending errors or events and bring a system to normal condition or initial state usually in a controlled manner. It is usually done in response to an error condition when it… … Wikipedia

reset generation — (REE.set jen.uh.ray.shun) n. Young people who, when a situation becomes difficult or burdensome, quit and start over again in a different situation. Example Citations: Hey coach! Two strikes. two outs. last inning. we re down by five, can I… … New words

button — A small disk or knob which activates something electrical when it is pressed such as a starter button. Also see abs override button eject button frequency scan button horn button memory button override button preset station button … Dictionary of automotive terms

Источник

button ( type=reset ) element

If you don’t know what an element is or how you must use it, I recommend you read the «HTML tags and attributes» tutorial that you can find in the HTML tutorials section.

Description

The button element, having the «reset» value in its type attribute, represents a button that, when pressed, resets all the fields in the form it belongs to, to their initial values. The label of a button is represented by the content of the element.

In contrast with the input (type=reset) element, this type of button can contain other non-interactive elements.

The way of setting an initial value for a control varies from type to type. In general, the value attribute is the responsible for setting the initial value, but in some cases, the checked or selected attributes may take its place.

Examples

In this example we’ll set up a form with a number of fields of different types, each of which has an initial value. Additionally a reset button will be provided to check its functionality.

Now we’ll see the special feature of the button element, which lets it hold other non-interactive elements. This is one of the main differences it has with the intput (type=reset) element.

Attributes

Specific attributes

autofocus

A boolean value instructing the browser to set the focus to this control when the document has finished loading or when the dialog where the control finds itself is shown. If the attribute has the value «autofocus» or the empty string («»), or if it’s just present, the control should get the focus as soon as possible, after the page or dialog has been loaded.

disabled

A boolean value indicating wether the control is disabled or not. If the attribute takes the value «disabled» or the empty string («»), or if it’s just present, the control will be disabled.

Disabled controls are rendered greyed out (if visible), are blocked from user interaction and, more importantly, their values (if any) aren’t sent when the form is submitted.

The value of the id attribute of the form with which this control is associated to.

A name for the control. This name will be sent by the browser to the processing agent, paired with the content of the value attribute. Both attributes together will conform a name-value pair that will be used to process the form data.

The name-value pair of a button is submitted, with the other form data, only if the button has been used to submit the form.

A value indicating the expected behavior of the button. There are four possible values (case-insensitive) that will decide the default action carried out by the button when it’s pressed:

When this attribute isn’t present, the button behaves as a «submit» button.

value

A value for the control. This value will be sent by the browser to the processing agent, paired with the content of the name attribute. Both attributes together will conform a name-value pair that will be used to process the form data.

The name-value pair of a button is submitted, with the other form data, only if the button has been used to submit the form.

Global attributes

For information about global attributes refer to this list of global attributes in HTML 5.

Events

Global events

For information about global events refer to this list of global events in HTML 5.

Источник

reset button

Смотреть что такое «reset button» в других словарях:

reset button — UK US noun [C] (also reset) IT ► a button or switch on a computer that allows you to turn it off and then on again when a program does not work correctly … Financial and business terms

Reset button — In electronics and technology, a reset button is a button that can reset a device. On video game consoles, the reset button restarts the game, losing the player s unsaved progress. On computers, the reset button clears the memory and reboots the… … Wikipedia

reset button — noun a push button that you press to activate the reset mechanism • Hypernyms: ↑push button, ↑push, ↑button • Part Holonyms: ↑reset * * * reset button, 1. a switch used to restore electrical current to a machine after interruption by an internal… … Useful english dictionary

reset button — startup button, switch which is pressed in order to stop computer operations and restart the computer … English contemporary dictionary

reset button — noun A plot device that interrupts continuity in works of fiction, by returning characters and situations to the status quo they held before certain changes were introduced … Wiktionary

reset button — A switch which puts the configuration of a component back to its standard setting … Dictionary of automotive terms

Reset button technique — The reset button technique (based on the idea of status quo ante ) is a plot device that interrupts continuity in works of fiction. Simply put, use of a reset button device returns all characters and situations to the status quo they held before… … Wikipedia

Reset-Schalter — [engl. reset button], Tastenschalter, dessen Betätigung einen Reset auslöst. Dieser Schalter war bei älteren Computern fast immer vorhanden, bei modernen Geräten wird bisweilen auf ihn verzichtet … Universal-Lexikon

Reset (computing) — In a computer or data transmission system, to reset means to clear any pending errors or events and bring a system to normal condition or initial state usually in a controlled manner. It is usually done in response to an error condition when it… … Wikipedia

reset generation — (REE.set jen.uh.ray.shun) n. Young people who, when a situation becomes difficult or burdensome, quit and start over again in a different situation. Example Citations: Hey coach! Two strikes. two outs. last inning. we re down by five, can I… … New words

button — A small disk or knob which activates something electrical when it is pressed such as a starter button. Also see abs override button eject button frequency scan button horn button memory button override button preset station button … Dictionary of automotive terms

Источник

Reset button что это

elements of type reset are rendered as buttons, with a default click event handler that resets all of the inputs in the form to their initial values.

Note: You should usually avoid including reset buttons in your forms. They’re rarely useful, and are instead more likely to frustrate users who click them by mistake (often while trying to click the submit button).

ValueA DOMString used as the button’s label
Events click
Supported common attributes type and value
IDL attributesvalue
MethodsNone

Value

An element’s value attribute contains a DOMString that is used as the button’s label. Buttons such as reset don’t have a value otherwise.

Setting the value attribute

Omitting the value attribute

Using reset buttons

A simple reset button

We’ll begin by creating a simple reset button:

This renders like so:

Try entering some text into the text field, and then pressing the reset button.

Adding a reset keyboard shortcut

To add a keyboard shortcut to a reset button — just as you would with any for which it makes sense — you use the accesskey global attribute.

In this example, r is specified as the access key (you’ll need to press r plus the particular modifier keys for your browser/OS combination; see accesskey for a useful list of those).

The problem with the above example is that there’s no way for the user to know what the access key is! This is especially true since the modifiers are typically non-standard to avoid conflicts. When building a site, be sure to provide this information in a way that doesn’t interfere with the site design (for example by providing an easily accessible link that points to information on what the site access keys are). Adding a tooltip to the button (using the title attribute) can also help, although it’s not a complete solution for accessibility purposes.

Disabling and enabling a reset button

To disable a reset button, specify the disabled global attribute on it, like so:

Note: See the page for more ideas about enabling and disabling buttons.

Validation

Buttons don’t participate in constraint validation; they have no real value to be constrained.

Examples

We’ve included simple examples above. There isn’t really anything more to say about reset buttons.

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *