Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 laravel 和 jquery 来制作我的网站,我正在使用 jquery .load 方法在页面中填充 div:
$('#button').on('click',function(){ $('#container').load('url'); });
它工作正常,但它正在用表单填充容器,当我提交表单时,如果验证通过一切就可以了,因为我不需要再次显示表单,但是如果我想返回一些错误,我必须单击按钮再次显示表单。
有没有办法用我已经拥有的 .load() 加载页面?