Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから - jQuery UI ライブラリ。ダイアログコンポーネントがあります。このコンポーネントには「タイトル」オプションもあります。ダイアログの新しいタイトルを設定するたびに、その前に「xxx」が追加されるように、jQueryのデフォルト機能をオーバーライドするにはどうすればよいですか?
jQuery.dialogメソッドをオーバーライドできます
jQuery.dialog
var oldDialog = jQuery.fn.dialog; jQuery.fn.dialog = function(title, options, otherStuff) { title = 'xxx' + title; return this.oldDialog(title, options, otherStuff); });
ただし、この方法で使用する他のオプションはわかりません。質問にコードを提供していただければ、回答を更新します。