|
@@ -9,9 +9,6 @@ var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
|
|
})
|
|
|
|
|
|
$(".next").click(function(){
|
|
|
- if( !validate() ){
|
|
|
- return false;
|
|
|
- }
|
|
|
avatar = $('.avatar').val();
|
|
|
name_title = $('.title_new').val();
|
|
|
txtARR=[];
|
|
@@ -31,7 +28,7 @@ $(".next").click(function(){
|
|
|
dataOBJ = {"name":name_title,"text_content":txtARR,"image_urls":imgARR,"avatar":avatar}
|
|
|
objstr = JSON.stringify(dataOBJ);
|
|
|
console.log(dataOBJ)
|
|
|
- alert('資料已送出! 請耐心等候')
|
|
|
+ alert('資料送出,請稍候')
|
|
|
$.ajax({
|
|
|
url: 'http://www.choozmo.com:8888/make_anchor_video_v2',
|
|
|
//url: 'http://www.choozmo.com:8888/qqreq',
|
|
@@ -40,11 +37,11 @@ $(".next").click(function(){
|
|
|
type: 'post',
|
|
|
data: objstr,
|
|
|
success: function(suc_data) {
|
|
|
-
|
|
|
+ alert(suc_data.msg)
|
|
|
},
|
|
|
//data:JSON.stringify({n1:"12",n2:"22"}),
|
|
|
error: function (error) {
|
|
|
- console.error(error)
|
|
|
+ alert(error)
|
|
|
}
|
|
|
});
|
|
|
|