value = publisher;
38 2 Developing an Ajax Web Application
var
editionElement=document.getElementById(???edition???);
editionElement.value = edition;
var titleElement=document.getElementById(???title???);
titleElement.value = title;
var authorElement=document.getElementById(???author???);
authorElement.value = author;
}
}
}
To the input.jsp add input fields for journal, publisher, edition, title, and
author and also add a Submit button. The input.jsp is listed below.
Ajax Web Application
Next, include the JavaScript file input.
Pages:
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58