在Jquery Mobile中添加中间按钮到标题

时间:2017-02-16 07:11:46

标签: jquery jquery-mobile

我知道我可以在jquery mobile的标题左侧和右侧添加按钮..但是如何在" center"中添加按钮?区域...?

like in this picture

提前致谢

1 个答案:

答案 0 :(得分:0)

您需要使用

<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>

希望这有帮助!