代码提交

This commit is contained in:
2020-10-10 00:59:35 +08:00
parent 44ed9f88c6
commit f895e58ca3
8 changed files with 50 additions and 11 deletions
+16 -4
View File
@@ -94,12 +94,24 @@ $("#newdiscussions").click(function () {
});
$("#newtags").click(function () {
$('#createNewtagsDiv').show();
$('#createNewtagsBtn').show();
return false;
$("#cancelnewtags").click(function () {
$('#createNewtagsDiv').hide();
$('#tagDescriptionDiv').hide();
$('#parentTagDiv').hide();
$('#colorIconDiv').hide();
});
$("#newtags").click(function () {
$('#createNewtagsDiv').show();
$('#tagDescriptionDiv').show();
$('#parentTagDiv').show();
$('#colorIconDiv').show();
});
function onTags(data) {
console.log('123');
console.log(data);
}
$("#commitnewtags").click(function () {