-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.js
12 lines (12 loc) · 894 Bytes
/
create.js
1
2
3
4
5
6
7
8
9
10
11
12
$('#createb').on('click', function() {
$('#emsg').text("");
$('#createg').hide();
$.getJSON("https://mc3.nakn.jp/api/ytquestion", { create: $('#titlec').val() }).done(function(data) {
$('#showurl').html(`<a href="https://narikakun.github.io/YTQuestion/index.html?get=${data.showurl}">https://narikakun.github.io/YTQuestion/index.html?get=${data.showurl}</a>`);
$('#adminurl').html(`<a href="https://narikakun.github.io/YTQuestion/admin.html?get=${data.adminurl}">https://narikakun.github.io/YTQuestion/admin.html?get=${data.adminurl}</a>`);
$('#liveurl').html(`<a href="https://narikakun.github.io/YTQuestion/show.html?get=${data.adminurl}">https://narikakun.github.io/YTQuestion/show.html?get=${data.adminurl}</a>`);
}).fail(function(err) {
$('#emsg').text("うまく作れませんでした。。。");
$('#createg').show();
});
});