我不完全了解一件事,下一个代码如何获取网址 参数。如果有人可以帮忙,我会很高兴。
$('.nav-item.home').addClass('active');
$('#searchForm').submit(function(event){
$(this).find('input[name=csrf]').val($('meta[name=csrf]').attr('content'));
$.ajax({
beforeSend: function(){
$('.spinner').show();
$('.innerText').html('');
},
type: 'POST',
data: $('#searchForm').serialize(),
url: $('#searchForm').data('action'),
答案 0 :(得分:2)
用于AJAX调用的URL参数是通过<form>
标签引入的:
url: $('#searchForm').data('action')
页面上有:
<form id="searchform" action="urltosomewhere">
您正在寻找什么吗?