13693261870
2023-06-21 cdf12fc9e88b1af69f5c85165eb9fef4e23bf57a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE>
 
<html>
<head>
    <meta charset="utf-8" />
    <title>信息弹窗</title>
</head>
 
<body>
    <div class="box">
        <div class="BoxOne">
            <div id="name" class="titleOne headOne">北工大软件园•荣京道</div>
            <div class="titleThree" style="float: right;"> 亿元 </div>
            <div id="gdp" class="titleTwo" style="float: right; margin: 0 5px;">326.7</div>
        </div>
    </div>
    <script>
        function getQueryString(name) {
            var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
            var r = window.location.search.substr(1).match(reg);
            if (r != null) {
                return decodeURI(r[2]);
            }
 
            return "";
        }
 
        window.onload = function () {
            document.getElementById("name").innerHTML = getQueryString("name");
            document.getElementById("gdp").innerHTML = getQueryString("gdp");
        }
    </script>
</body>
<style>
    .box {
        width: 90%;
        height: 85%;
        background: url('./UE/img/bg2.png') no-repeat center;
        background-size: 100% 100%;
        position: absolute;
        padding: 1%;
        float: left;
    }
 
    .BoxOne {
        float: left;
        padding: 24px;
        height: 32px;
        position: absolute;
        top: 1%;
        left: 3%;
        float: left;
    }
 
    .titleOne {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 10px;
        color: #FFFFFF;
        float: left;
    }
 
    .titleTwo {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-size: 10px;
        line-height: 10px;
        color: #00FFCB;
    }
 
    .titleThree {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-size: 10px;
        line-height: 10px;
        color: #FFFFFF;
    }
 
 
    .titleFour {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 15px;
        color: #FFFFFF;
        float: left;
    }
</style>
 
</html>