我有一个jQuery UI按钮,我放在jqGrid工具栏中,但按钮的内容是包装。我试图通过使用CSS white-space属性来防止包装无效。
以下是正在发生的事情的快照:
alt text http://www.freeimagehosting.net/uploads/c455ebf64e.png
以下是我尝试解决问题的两个代码段:
$("#t_imageList").css("white-space", "nowrap").html('<button>Add</button>');
$("#t_imageList button").button({
icons: {primary: 'ui-icon-plus'},
text: true
});
和/或
$("#t_imageList button").css("white-space", "nowrap").button({
icons: {primary: 'ui-icon-plus'},
text: true
});
有人遇到过同样的问题吗?如果是这样,你的解决方案是什么?
答案 0 :(得分:1)