我正在尝试在jQuery对话框中定位2个按钮。 在我的默认设置中,按钮初始化为彼此。 我需要他们并排。
任何有此问题经验的人?
这里是我的初始选项:
var dialogOpts = {
modal: true,
buttons: {
"OK": function () {
if (window.currentNodeValue != null) {
//Not interesting
} else {
//Not interesting
}
},
"Abbrechen": function () {
//Not interesting
}
},
width: 500,
height: 600,
autoOpen: false,
resizable: false
};
答案 0 :(得分:1)
可能有一些类似的原因,但最有可能的是,您网站的CSS将display
元素的默认button
样式设置为block
。尝试通过Firebug手动将其设置为inline
。如果这有帮助,只需在CSS文件的末尾添加它
.ui-dialog-buttonset button.ui-button {display:inline;}