我正在尝试将网址复制到剪贴板,但只有在第二次点击后才会发生
$.fn.modal.Constructor.prototype.enforceFocus = function() {
var clipboard = new Clipboard('#sharePdf') //This is getting hit when clicked second time, I need it along with copyURL
}
$('#sharePdfLink').on('click', function () {
$.ajax({
type: "POST",
data: '',
contentType: "application/json",
url: ''
})
.success(function(resp) {
var copyURL = "localhost:9191"
$('#sharePdf').attr('data-clipboard-text', copyURL);
$('#sharePdf').attr('data-clipboard-action', 'copy');
}
});