12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>snphHaifmMain</title>
- <script type="text/javascript">
- $(function(){
- if ($("#lqid").val() > 0) {
- jQuery.ajax({
- type : "get",
- url : "getHaifmSnphTjt.htm",
- data : {"lqid" : $("#lqid").val(), "jsms" : "$!jsms", "dbrq" : "$!dbrq", "tjtksrq" : "$!tjtksrq", "tjtjsrq" : "$!tjtjsrq"},
- dataType : "json",
- async : true,
- success : function(data) {
- if (data) {
- getHighchartTjt(data);
- }
- }
- });
- }
- });
- </script>
- </head>
- <body>
- <input type="hidden" id="lqid" value="$!lqid"/>
- </body>
- </html>
|