如何提取 strong 元素的值在以下代码中。
$(e).find("div[id^='edit']").each(function(index, element) {
// The "element" contains a <strong>NUM</strong> tag. Extract NUM
}
答案 0 :(得分:2)
像这样:
$(e).find("div[id^='edit']").each(function(index, element) {
var num = +($(this).find("strong").text());
});