2017-09-01 74 views
0

我正在项目中使用jquery数据表。这是我已经包含在我的网页端脚本:上一个和下一个按钮不相邻

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> 
</script> 

<script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt- 
1.10.13/datatables.min.js"></script> 
<script type="text/javascript" 
src="https://cdn.datatables.net/1.10.13/js/dataTables.bootstrap.min.js"> 
</script> 
<script 
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"> 
</script> 
<link rel="stylesheet" type="text/css" 
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> 
     <link rel="stylesheet" type="text/css" 
href="https://cdn.datatables.net/1.10.13/css/dataTables.bootstrap.min.css" 
/> 

的问题是previouspagenext按钮不相邻。 enter image description here

回答

2

您应该在<head></head>标签之间加入css标签,而不是在页面末尾,也许这就是问题所在?如果这不是问题,那么请发布您的HTML/CSS代码的按钮。

相关问题