12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <script type="text/javascript">
- function jinggao(url){
- alert("对不起!您还未登录,请您先登录");
- var test='${ctxPath}/system/reception/nologin';
- mypost(test,{"url":url});
- }
- function mypost(url, params) {
- // 创建form
- var temp_form = document.createElement("form");
- // 设置form
- temp_form .action = url;
- temp_form .target = "_self";
- temp_form .method = "post";
- temp_form .style.display = "none";
- // 处理需要传递的参数
- for (var x in params) {
- var opt = document.createElement("textarea");
- opt.name = x;
- opt.value = params[x];
- temp_form .appendChild(opt);
- }
- document.body.appendChild(temp_form);
- // 提交表单
- temp_form .submit();
- }
- $(function(){
- var url= "${ctxPath}/cms/AllCharts";
- $.ajax({
- type: "POST",
- async:false,
- url:url,
- dataType: "json",
- success: function(data){
- $("#count").append(''+data.legend.data+'');
- }
- });
- });
- </script>
- <!--底部开始-->
- <div class="footer">
- <div class="footer_in">
- <script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='http://dcs.conac.cn/js/09/158/0000/60022510/CA091580000600225100000.js' type='text/javascript'%3E%3C/script%3E"));
- </script>
- <!-- <a><img src="${resPath}/bcrc-mobile/images/blue.png"/></a>-->
- <div>
- <p>主办:吉林省白城市暨洮北区人才交流中心</p>
- <p><a style="color: #fff;margin: 0;" href="https://beian.miit.gov.cn/" target="_blank"><img src="${resPath}/bcrc/images/jsbgh.png" style="margin: 0px 0 0 0;"/>吉ICP备14003212号-1</a></p>
- <p>技术支持:长春首佳科技有限公司</p>
- <p>地址:白城市中兴东大路2-21号</p>
- <p>邮编:137000 网站总访问量:<i id="count"></i></p>
- <p>声明:本站所有信息、图片,未经许可不得复制、转载</p>
- </div>
- </div>
- </div>
- <!--底部结束-->
- </div>
-
-
|