如何使用 jquery 获取这样的元素的文本?

发布于 2024-12-12 06:30:05 字数 165 浏览 0 评论 0原文

使用 jquery $( 时,有一段像这样的html代码 "label[for='name']").text(),返回的是'填写你的名字*',如何准确获取'填写你的名字'?

there is a snippets of html codes like this<label for=name>fill in your name<span>*</span></label>, when using jquery $("label[for='name']").text(), it returned 'fill in your name*',how can get exactly 'fill in your name'?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初与友歌 2024-12-19 06:30:05

contents() 允许您选择所有节点类型 - 包括文本节点。例如,这将返回元素的第一个文本节点的文本:

$("label[for='name']").contents().eq(0).text();

工作演示:http://jsfiddle.net/mX8zK/< /p>

contents() allows you to select all node types - including just text nodes. For example, this will return the text for the first text node of the element:

$("label[for='name']").contents().eq(0).text();

Working demo: http://jsfiddle.net/mX8zK/

ヅ她的身影、若隐若现 2024-12-19 06:30:05

我建议您不要放置 * 而是使用伪元素 (:after)。这样您就可以轻松获得更好的结果。

查看此示例

请注意更清晰的标记:

<label for="name" class=required>Fill in your Name</label>

由于应用了 :after 伪元素,每个 .required 标签默认都会带有星号:

label.required:after {
    content: '*';
}

重要注意:上述解决方案在 IE7 及以下版本上将失败,因为它们不支持伪元素。

I would suggest you don't put the <span>*</span> and instead use pseudo-elements (:after). That way you can easily get better results.

See this EXAMPLE.

Note the cleaner markup:

<label for="name" class=required>Fill in your Name</label>

Every .required label will have the star by default thanks to the :after pseudo-element which is applied to it:

label.required:after {
    content: '*';
}

Important Note: The mentioned solution will fail on IE7 and below, as they do not support pseudo elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文