Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Shiva

mudar texto dos botões do alert box

Recommended Posts

Aí galera,Alguem sabe como mudar o texto dos botões do alert box e confirm box do javascript?Pra quem não sabe, o confirm possui os botões OK e CANCEL e o alert só o OK.Valeu

Compartilhar este post


Link para o post
Compartilhar em outros sites

window.confirm()

JavaScript 1.0+, JScript 1.0

Nav2+, IE 3+, Opera3+

 

Syntax

window.confirm(string)

 

Description

The confirm() method of the Window object displays a confirmation dialog box when invoked. The value of the string passed to the method is displayed in the box. This box will contain both an OK an Cancel button. The method returns a Boolean value of true if the user click OK and false if the user clicks Cancel.

 

Example

<script>if(confirm("ecolhe ai!")){  document.write("clicou OK");} else {  document.write("clicou Cancel");}</script>
bom ta ai eu acredito q está bem esplicado é só usar!

 

 

the void

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.