16 lines
209 B
JavaScript
16 lines
209 B
JavaScript
function InitPage() {
|
|
$("#init-page").show();
|
|
$("#result-page").hide();
|
|
}
|
|
|
|
function Appear() {
|
|
$("#init-page").hide();
|
|
$("#result-page").show();
|
|
}
|
|
|
|
function get{{ name }}() {
|
|
Update();
|
|
}
|
|
|
|
InitPage()
|