|
@@ -81,19 +81,33 @@ $(".previous").click(function(){
|
|
|
});
|
|
|
|
|
|
|
|
|
-/*$("input[name=submit]").click(function(){
|
|
|
- console.log($("#msform").serialize());
|
|
|
- $.ajax({
|
|
|
- url: '/step_questions/submit',
|
|
|
- type: 'post',
|
|
|
- dataType: 'json',
|
|
|
- data: $("#msform").serialize(),
|
|
|
- success: function(data) {
|
|
|
- showThankyou();
|
|
|
- }
|
|
|
- });
|
|
|
- return false;
|
|
|
-})*/
|
|
|
+$("input[name=submit]").click(function(){
|
|
|
+ let stop;
|
|
|
+ console.log($("#msform").serialize());
|
|
|
+
|
|
|
+ if( $('input[name="q9"]:visible').val() !== undefined && !$('input[name="q9"]:visible').prop('checked') ) {
|
|
|
+ stop = 1;
|
|
|
+ $('#term-error').text('必須同意免責聲明與隱私使用政策');
|
|
|
+ }else {
|
|
|
+ stop = 0;
|
|
|
+ $('#term-error').text('');
|
|
|
+ }
|
|
|
+
|
|
|
+ if(stop == 0) {
|
|
|
+ /* $.ajax({
|
|
|
+ url: '/step_questions/submit',
|
|
|
+ type: 'post',
|
|
|
+ dataType: 'json',
|
|
|
+ data: $("#msform").serialize(),
|
|
|
+ success: function(data) {
|
|
|
+ showThankyou();
|
|
|
+ },
|
|
|
+ error: function (error) {
|
|
|
+ console.error(error)
|
|
|
+ }
|
|
|
+ }); */
|
|
|
+ }
|
|
|
+});
|
|
|
|
|
|
function showThankyou() {
|
|
|
document.location = 'index_complete.html';
|
|
@@ -134,12 +148,18 @@ function validate() {
|
|
|
}
|
|
|
|
|
|
function q3_validate() {
|
|
|
+ let emailPattern = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
|
if( $('input[name="q3"]:visible').val() !== undefined && $('input[name="q3"]:visible').val().length <= 0) {
|
|
|
$('input[name="q3"]:visible').addClass('error');
|
|
|
if( !$('.error-text').length )
|
|
|
$('input.error').after('<p class="error-text">請輸入E-mail</p>');
|
|
|
return false;
|
|
|
- }
|
|
|
+ } else if ( $('input[name="q3"]:visible').val() !== undefined && !emailPattern.test($('input[name="q3"]:visible').val()) ){
|
|
|
+ $('input[name="q3"]:visible').addClass('error');
|
|
|
+ if( !$('.error-text').length )
|
|
|
+ $('input.error').after('<p class="error-text">請輸入正確email格式</p>');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
else {
|
|
|
$('input[name="q3"]:visible').removeClass('error');
|
|
|
$('.error-text').remove();
|
|
@@ -147,5 +167,19 @@ function validate() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- return q2_validate() && q3_validate()
|
|
|
+ function q4_validate() {
|
|
|
+ if( $('input[name="q4"]:visible').val() !== undefined && $('input[name="q4"]:visible').val().length <= 0 ) {
|
|
|
+ $('input[name="q4"]:visible').addClass('error');
|
|
|
+ if( !$('.error-text').length )
|
|
|
+ $('input.error').after('<p class="error-text">請輸入建案名稱</p>');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ $('input[name="q4"]:visible').removeClass('error');
|
|
|
+ $('.error-text').remove();
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return q2_validate() && q3_validate() && q4_validate();
|
|
|
}
|