gpt4 book ai didi

JavaScript/Jquery 正则表达式替换

转载 作者:行者123 更新时间:2023-11-28 21:13:39 26 4
gpt4 key购买 nike

我正在为我的网站制作一个悬停卡插件,但在获取用户 ID 时遇到问题。

个人资料网址可以是;

hxxp://mysite.com/?p=profile&id=1
hxxp://mysite.com/?p=profile&id=1&page=2
hxxp://mysite.com/?p=profile&id=1&v=wall

等等..

如何通过 javascript Regexp Replace 获取配置文件的 id?

    $(document).ready(function () {
var timer;
$('a[href*="hxxp://mysite.com/?p=profile"]').hover(
function () {
if(timer) {
clearTimeout(timer);
timer = null
}
timer = setTimeout(function() {

// profile_id
// and get id's hovercard content here

},1000);
},
function () {
if(timer) {
clearTimeout(timer);
timer = null
}
$('.HovercardOverlay').empty();
}
);
});

最佳答案

var result = $(this).attr("href").match(".*profile&id=(\d+)&?.*")
var id = result[1]

这已在 http://www.regular-expressions.info/javascriptexample.html 上进行了测试

关于JavaScript/Jquery 正则表达式替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8102187/

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