Pytanie : Asp Pomoc

cześć jakaś jeden móc?

i mieć 2 textbox, txtblackPages i txtcolourPages i i używać "onkeyup = "ValidateText (2) "" metoda the dwa textbox. i chcieć dlaczego the dwa textbox informacja w the textbox i the suma ono e.g.

txtblackPages = 200 + txtcolourpage = 100
the suma być 300

here być mój kod:

function ValidateText (i)
{
jeżeli (i.value.length>0)
{
i.value = i.value.replace (/[^ \ D] +/g, '');
var a = Liczba (i.value.replace (/[^ \ D] +/g, ''));
var a = Liczba (a*1.00);
var B = Liczba (document.getElementById ("txtCPages ").value);
var B = Liczba (b*2.00);
var D = Liczba (document.getElementById ("txtCopiespages").value);
var c = (a+b) *d;
document.getElementById ("lblTotalPrinting ").innerText = (c) .toFixed (2);

var oprawa = Liczba (document.getElementById ("lblBinding ").value);
var dodatek = Liczba (document.getElementById ("lblextra ").value);
var dostawa = Liczba (document.getElementById ("lblDelivery ").value);

document.getElementById ("lblTotlalThesisCost ").innerText = (c + oprawa +extra + dostawa) .toFixed (2);
}
inny
{
var txtcolo= Liczba (document.getElementById ("txtCPages ").value);
txtcolo = txtcolo * 2.00;
document.getElementById ("lblTotalPrinting ").innerText = (txtcolo) .toFixed (2);

var oprawa = Liczba (document.getElementById ("lblBinding ").value);
var dodatek = Liczba (document.getElementById ("lblextra ").value);
var dostawa = Liczba (document.getElementById ("lblDelivery ").value);

document.getElementById ("lblTotlalThesisCost ").innerText = (txtcolo + oprawa +extra + dostawa) .toFixed (2);
}

}

it pracować świetnie ale i także chcieć jak ustalony visablity true i fałszywy?
e.g.

if suma > 100

txtbox1 musieć widoczny w mój funkcja ValidateText (i) che być java

Can ty pomagać?

Odpowiedź : Asp Pomoc

ty móc widoczność przez styl

document.getElementById ("idofelement ").style.display ("nikt"); //hide element
document.getElementById ("idofelement ").style.display (""); //display element

css pokaz robić the element niewidzialny i także chować ono od the strona więc element przesuwać tak jakby the element ty chować pójść od the strona

document.getElementById ("idofelement ").style.visibility ("chować"); //hide element
document.getElementById ("idofelement ").style.visibility ("widoczny"); //display element

css widoczność robić the rzecz niewidzialny, ale ono wciąż trzymać ono być miejsce na the strona

na przykład jeżeli ty miewać 3 wizerunek, i ty używać css pokaz własność the środkowy wizerunek, the trzeci wizerunek ruszać się obok the pierwszy wizerunek, tak jakby tam  być żadny żadny wizerunek tam. Jeżeli ty używać widoczność the środkowy wizerunek, then the środkowy wizerunek znikać i ono patrzeć jakby tam  być pusty przestrzeń the rozmiar the środkowy obrazek między obrazek (1) i 3
Inne rozwiązania  
 
programming4us programming4us