Showing
1 changed file
with
17 additions
and
0 deletions
views/game_result.ejs
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | +<head> | ||
4 | +<script> | ||
5 | + var item='<%- body %>'; | ||
6 | + var url='<%- url %>'; | ||
7 | + function Img() { | ||
8 | + return url+item; | ||
9 | + } | ||
10 | +</script> | ||
11 | +</head> | ||
12 | +<body> | ||
13 | + <img id="imgId" src=""> | ||
14 | + <script>document.getElementById("imgId").src = Img()</script> | ||
15 | + | ||
16 | +</body> | ||
17 | +</html> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment