jQuery UIダイアログボタンでjQuery zClipプラグインを使用したいが、この場合にどのように適応するのか分からない。誰でも私を助けることができますか?jQuery UIダイアログボックスのクリックイベントでzClipを使用する
ありがとうございます!
$.ajax({
url: '/music/lyrics/' + hash,
success: function (data) {
data = jQuery.parseJSON(data);
$('#dialog-modal').html(data.lyrics);
$('#dialog:ui-dialog').dialog('destroy');
$('#dialog-modal').dialog({
modal: true,
resizable: false,
title: 'Lyric: ' + data.song,
width: 500,
height: 400,
buttons: {
'Copy' : function() {
// use zClip to copy $('#dialog-modal').text() here
}
}
});
},
error: function (msg) {
alert(msg);
}
});
ありがとうございます。ダイアログが開かれたときではなく) –