To learn Ajax in Java, I did "Introduction to Ajax in Java Web Application" provided by NetBeans. .. There were some addictive parts, so I will introduce them. If you are going to "Getting Started with Ajax in Java Web Applications" from now on, please refer to it.
I need to start a server in NetBeans to use Ajax, but that server didn't start.
It is OK if you execute the contents described in the article of http://etc9.hatenablog.com/entry/2016/12/21/070607.
There is a place to insert the table tag, but if you copy and paste it as it is, an error will occur.
index.html
<tr>
<td id="auto-row" colspan="2">
<table id="complete-table" />
</td>
</tr>
The end tag of table is missing, so add it.
index.html
<tr>
<td id="auto-row" colspan="2">
<table id="complete-table" /></table>
</td>
</tr>
This may only be my environment, but when I added the CSS the display went crazy.
Correct the parts shown below.
stylesheet.css
.popupBox {
position: absolute;
top: 170px;
//Change here so that it does not stick out
left: 58px;
}
Recommended Posts