试试这个:
$(function(){ // start of doc ready. $(".faq_title").click(function(e){ e.preventDefault(); // stops the jump when an anchor clicked. var title = $(this).text(); // anchors do have text not values. $.ajax({ url: 'faq/get_faq_data', data: {'title': title}, // change this to send js object type: "post", success: function(data){//document.write(data); just do not use document.writeconsole.log(data); } }); });}); // end of doc ready
我所看到的问题是这
var title =$(this).val();是因为您的选择器
$(".faq_title")是锚,并且锚具有文本而不是值。因此,我建议您使用
.text()而不是
.val()。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)