我想知道如何允许jquery ui按钮允许换行。
在转到jquery按钮之前。
<input type="button" id="btnFX" value="Button Name
With
New Line" />
转向jquery按钮
$('#btnF9').removeAttr('disabled');
$('#btnF9').button();
答案 0 :(得分:0)
这与jQuery无关:
<button type="button" id="btnFX" >Button Name<br />With<br />New Line</button>
<script>
$(function() {
$("#btnFX").button();
});
</script>