使用 jQuery 获取字符串的一部分

发布于 2024-09-19 07:25:17 字数 179 浏览 6 评论 0 原文

HTML 代码:

<div id="block-id-45"></div>

如何使用 jQuery"45" >?

HTML code:

<div id="block-id-45"></div>

How can I get number "45" of string using jQuery?

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

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

发布评论

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

评论(3

你又不是我 2024-09-26 07:26:12

使用 jQuery,简单地说:

$("[id='block-id-45']").attr("id").split("-")[2]

对于所有 block-id-##,您可以使用来自的掩码模式彼得的回答

$("[id^='block-id-']").click(function(){

    row_id = $(this).attr("id").split("-")[2];
    .............
    .............
})

Using jQuery, simply:

$("[id='block-id-45']").attr("id").split("-")[2]

For all block-id-##, you can use mask pattern from Peter's answer:

$("[id^='block-id-']").click(function(){

    row_id = $(this).attr("id").split("-")[2];
    .............
    .............
})
走过海棠暮 2024-09-26 07:25:58

为此,您不需要(或特别需要)jQuery(它对于许多其他事情非常有用,但不是特别适合这个)。直接 JavaScript 和 DOM:

var div = document.getElementById('block-id-45');
var n = div.id.lastIndexOf('-');
var target = div.id.substring(n + 1);

实例: http://jsbin.com/osozu

如果您已经在使用 jQuery,您可以将第一行替换为:

var div = $('#block-id-45')[0];

...但是几乎没有理由这样做。

You don't need (or particularly want) jQuery for this (it's very useful for lots of other things, just not particularly for this). Straight JavaScript and DOM:

var div = document.getElementById('block-id-45');
var n = div.id.lastIndexOf('-');
var target = div.id.substring(n + 1);

Live example: http://jsbin.com/osozu

If you're already using jQuery, you can replace the first line with:

var div = $('#block-id-45')[0];

...but there's little if any reason to.

巴黎夜雨 2024-09-26 07:25:45

返回 id 属性末尾的数字,请使用

$(this).attr("id").match(/[\d]+$/);

上面将返回 45 if $(this)

< strong>jsFiddle 示例

上面的工作方式是使用 .attr(),然后查看 id 并使用 .match() 恢复号码结束了。 /[\d]+$/ 是一个正则表达式。 [\d] 表示一位数字 + 表示一个或多个(数字)。 $ 表示行尾。


您可以使用此函数通过使用属性以选择器 [name^=value]< 开头a href="http://api.jquery.com/jQuery.each/" rel="noreferrer">.each()

实际用法:

$(function() {

      // Select all DIS that start with 'block-id-'
      //   and iterate over each of them.
    $("div[id^='block-id-']").each(function() {

          // You could push this data to an array instead.
          // This will display it.
        $("body").append( "Id number: " + 
                            // This is the number at the end
                          $(this).attr("id").match(/[\d]+$/) +
                          "<br/>" );
    });
});​

jsFiddle 示例

To return the number at the end of an id attribute use

$(this).attr("id").match(/[\d]+$/);

The above will return 45 if $(this) is <div id="block-id-45"></div>

jsFiddle example

The way the above works is that you retrieve the id of the element using .attr(), then you look at the id and use .match() to recover the number at the end of it. /[\d]+$/ is a regex. [\d] means one digit + means one or more (of the digits). and $ means the end of the line.


You can use this function to retrieve the numbers from the end of all divs with an id that starts with block-id- by making use of the attribute starts with selector [name^=value] and .each():

Practical usage:

$(function() {

      // Select all DIS that start with 'block-id-'
      //   and iterate over each of them.
    $("div[id^='block-id-']").each(function() {

          // You could push this data to an array instead.
          // This will display it.
        $("body").append( "Id number: " + 
                            // This is the number at the end
                          $(this).attr("id").match(/[\d]+$/) +
                          "<br/>" );
    });
});​

jsFiddle example

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