我正在尝试设置我的表单,以便动作会根据身体类别而改变。
表格设置 -
<form action="basicURL" method="post" id="quoteForm">
jQuery设置 -
if ($('body').hasClass('hosting')) {
$('#quoteForm').attr('action', 'hostingURL');
}
我所看到的一切似乎都表明它应该可以工作,但事实并非如此。
您的代码确实有效。
您需要将您的 JQuery 包装在一个准备好的函数中,以确保它在您的页面绘制后加载。
$('document').ready(function () {
if ($('body').hasClass('hosting')) {
$('#quoteForm').attr('action', 'hostingURL');
}
});
这是一个工作小提琴