在选择标签中添加一个属性 id="tour_category" 并尝试$(document).ready( function(){ var a = new Array(); $("#tour_category").children("option").each(function(x){ test = false; b = a[x] = $(this).val(); for (i=0;i<a.length-1;i++){ if (b ==a[i]) { test =true; } } if (test) { $(this).remove(); } })});
1 回答
MYYA
TA贡献1868条经验 获得超4个赞
您必须指定要提交的表单试试这个,
$('.submit-like').click(function(){
$(this).parent().submit()
})
$('like-form-js').submit(function(e){
e.preventDefault();
$.ajax({
url: 'some-url',
type: 'post',
dataType: 'json',
data: $(this).serialize(),
success: function(data) {
console.log('success');
}
});
})
- 1 回答
- 0 关注
- 150 浏览
添加回答
举报
0/150
提交
取消