gpt4 book ai didi

jquery 设置 url 提交

转载 作者:行者123 更新时间:2023-12-01 00:11:14 27 4
gpt4 key购买 nike

我有一个经过此验证的表单

jquery

$("#aioForm").on('submit',function(e){
var errorCount = 0;
$('span.errorMessage').text('');
// checkign for multiple select [now you have one]
var select = $('#addIO select').filter(function(){
return this.selectedIndex == 0;
}).next('span').text('Please select a cell');
// checking for inputs
var input = $("#aioForm input[type=text]").filter(function() {
return !this.value;
}).next('span').text("fill the name please");
// no error checking
if(input.length==0 && select.length == 0){
$(this)[0].submit(); // submit form if no error
}
e.preventDefault();
});

如果没有错误,我想在提交之前设置要提交的网址,我的意思是在语句之​​前

$(this)[0].submit();

最佳答案

if(input.length==0 && select.length == 0){
$(this).attr('action', 'url_to_submit').submit();
}

关于jquery 设置 url 提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10674937/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com