在jquery mobile中添加中间按钮到头部
答
您需要使用
<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>
希望这有助于!