这个HTML有什么问题

时间:2017-07-31 18:31:04

标签: javascript jquery html css

我在js小提琴中引用代码:

Jsfiddle工作正常

<style>
.item {
    display: inline-block;
    width: 180px;
    height: 120px;
    border: thin solid #000;
    margin: 0.25em;
}
.item .title {
    font-weight: bold;
    word-wrap: break-word;
}
.item {
    overflow: hidden;
}
.hidden {
    display: none;
}
#top {
    position: fixed;
    width: 100%;
    height: 80px;
    padding: 4px;
    text-align: center;
    background: #FFF;
}
#top h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}
#search {
    width: 60%;
    margin: 0 auto;
    padding: 0.25em;
    text-align: center;
}
#results {
    padding-top: 90px;
    text-align: center;
}
.icon:before {
    font-size: 3em;
    color: #4466DD;
}
</style>
</head>
<body>
<div id="top">
    <h1>Programming Languages</h1>
    <input type="text" id="search" value="" placeholder="Search..." />
</div>
<div id="results"></div>
<script>..................

my_list = ['2-7', '10-22', '22-50', '50-70', 
           '2-7', '10-22', '22-50', '50-70', 
           '2-7', '10-22', '22-50', '50-70']

list_2 = []
for item in my_list:
    first, second = item.split('-')
    list_2.append([float(first), float(second)])

但是当我编写相同的代码并在此网站(http://indianwaterpurifiers.online/)中托管时,请参阅视图源,网格未在浏览器中呈现。

HTML文件有什么问题?

2 个答案:

答案 0 :(得分:1)

您有一个加载jQuery UI的网站,但这取决于jQuery。确保在jQuery UI之前将其包含在页面上。

all.equal(DT1, DT2)

答案 1 :(得分:0)

包含

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

并且它有效,感谢您的评论