在jquery mobile中添加中间按钮到头部

问题描述:

我知道我可以在jquery mobile的头部左右添加按钮......但是我怎样才能在“中心”区域添加一个按钮...?在jquery mobile中添加中间按钮到头部

like in this picture

在此先感谢

您需要使用

<button id="middleButton">Main Page</button> 

然后,在CSS中,使用此。

<style> 
button.middleButton { 
    position : relative;/*This makes you able to move the button*\ 
    bottom: 300;/* will move up 300px*\ 
    top: 300;/*will move down 300px*\ 
    left: 300;/*will move right 300px*\ 
    right: 300;/*will move left 300px*\ 
</style> 

希望这有助于!