gpt4 book ai didi

jQuery 解析 HTML

转载 作者:搜寻专家 更新时间:2023-10-31 22:22:44 25 4
gpt4 key购买 nike

我有一个简单的函数,看起来像这样

var getCellText = function ($cell) {
var html = $cell.html();
$(html).find("input").each(function () {
alert(this.value);
});
}

HTML 看起来像这样

<input class="lineno" name="lineno" value="4109375" type="hidden">
<input onchange="Time.UpdateLine(this, 'studentno', this.value, '4109375');" class="studentno" value="2088" type="text">

我需要获取 studentno 输入标签的值(我可以忽略名为 lineno 的输入)。

我该怎么做,如你所见,我已经尝试过了

最佳答案

你把事情搞得太复杂了。不要使用 .html(),请使用 .val() .

function getCellText($cell)
{
var value = $cell.find('input.studentno').val();
console.log(value);
}

关于jQuery 解析 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8312207/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com