我在我的jQuery UI對話框的標題欄中放置了一個文本框。jQuery UI對話框 - 標題欄中的輸入文本框被禁用?
不幸的是,它在標題欄中被禁用(或以其他方式無法點擊)。
如何更改此選項以便啓用我的文本框?
var $dialog = $('#dlgsearch')
.dialog({
autoOpen: false,
modal: true,
resizable: false,
draggable: false,
maxWidth:600,
maxHeight: 500,
width: 600,
height: 500,
title: 'Text Search:<input type="text" id="input_search" maxlength="255">'
});
});
您是否遇到了特定瀏覽器的麻煩?我試過了,它適用於我:http://jsfiddle.net/9bCNH/ – Dave