我有以下的html:獲取表頭單元格內容
<div>
<table class="month">
<tbody>
<tr>
<th class="month">February 2017</th>
</tr>
...
我想獲得「2017年二月」使用jQuery,所以我可以用Ajax發送到一個視圖。我已經嘗試了一些東西,無法讓這個工作。這是我的時刻了:
$('#next').click(function() {
$.ajax({
url: my_url,
method: 'GET',
data: {
current: $('#month').find("th.month").html(), // data you need to pass to your function
other: "other"
},
success : function (json) {
console.log(json);
}
});
});
它,當我點擊了下一個ID的鏈接觸發。其他數據發送很好。當前返回無。我也嘗試過使用val()。
得到divs/table/th等約定真的讓我困惑。
感謝
這是解決它,謝謝。知道這很有用。是我不知道區別的課程。 –