12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta content="IE=edge" http-equiv="X-UA-Compatible">
- <meta content="initial-scale=1.0, width=device-width" name="viewport">
- <title>test</title>
- <!-- css -->
- <script type="text/javascript" src="jquery-1.11.1.js"></script>
- <TITLE>Checking if Acrobat Reader installed (IE4+)...</TITLE>
- <SCRIPT>
- function test(){
- $.ajax({
- type: 'post',
- url: '../../fjcontroller/viewpdf.do?id=8a819eb250db23610150e9e13d6017dd',
- data:{uid:"402881e44e86c26d014e86c9ae8c0008"},
- dataType: 'json',
- success: function(data){
- //alert(data.path);
- window.open("test.jsp?value="+data.path+"&width="+(document.documentElement.clientWidth-30)+"&height="+(window.screen.height-65),"newwindow", "height="+window.screen.height+", width="+document.documentElement.clientWidth+", top=0,left=0,toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=no");
- }})
- }
-
-
- </SCRIPT>
- </HEAD>
- <BODY>
- <input type="button" id="test" value="open" onclick="test();"/>
- </BODY>
- </HTML>
|