admin管理员组文章数量:1344422
What does
/.*=/,''
mean in
var id=this.href.replace(/.*=/,'');
?
Full code
function delete_subscriber(){
var id=this.href.replace(/.*=/,'');
this.id='delete_link_'+id;
if(confirm('Are you sure you want to delete this subscriber?'))
$.getJSON('delete.php?ajax=true&id='+id, remove_row);
return false;
}
I assume it is regex, but I have little knowledge about it.
What does
/.*=/,''
mean in
var id=this.href.replace(/.*=/,'');
?
Full code
function delete_subscriber(){
var id=this.href.replace(/.*=/,'');
this.id='delete_link_'+id;
if(confirm('Are you sure you want to delete this subscriber?'))
$.getJSON('delete.php?ajax=true&id='+id, remove_row);
return false;
}
I assume it is regex, but I have little knowledge about it.
Share Improve this question edited Apr 29, 2019 at 21:40 halfer 20.4k19 gold badges109 silver badges202 bronze badges asked Jan 7, 2010 at 20:44 shinshin 32.7k71 gold badges192 silver badges272 bronze badges6 Answers
Reset to default 11It replaces any character (except line breaks) up to and including the last equals sign with nothing. So given this text:
"I am some text before=and I am some text after"
You'd get:
"and I am some text after"
And given this text:
"I am some text before=and I am in between=and I am after"
you'd get:
"and I am after"
It's a regular expression.
The specific syntax here is as follows (ments after the #
s):
/ # Begin an expression
.* # Match all characters
= # Until an equals sign is met
/ # End the expression
The rest of it is a function that replaces anything that is matched by this regular expression and remove it.
It means, take everything up to and including an equal sign and replace it with nothing, so take something like
http://yourserver./blah/blah/blah/id=20 and change it to 20.
Here is a more detailed explanation:
/.*=/,''
//
denotes a regular expression.
denotes any character except for newline*
means 0 or any number of (any character in this case)=
literally means the equals symbol''
is the string with which it is being replaced (i.e. nothing)
The /.=/ is a _regular expression_ which matches: first, a sequence of any character (represented by '.'), second and finally, matching literally the character equal ('=') as specified by the character itself. The '/' characters delimit the regular expression.
The call to replace()
passes an empty replacement string. The purpose of such a call to replace is to delete the matching text. So this invocation deletes the text to the left of the equal sign, and the equal sign itself.
In the context of the overall function, id is assigned the value of all the text after an equal sign in the current page's href
. So, this code is unpacking a URL to obtain parameters that are marked by the presence of an equal sign in the URL, it appears.
The slashes begin/end the regular expression. The period matches any character. The asterisk means match any number (zero or more) of the previous expression (any character). The equal sign literally matches an equal sign. So ".*=" means anything (including nothing at all), followed by an equal sign. The second parameter to shits function, '', is an empty string, so the matching string will be deleted (replaced with nothing).
In short, this particular snippet will remove anything before and including an equal sign from the string (this.href, the current URL). So it'd be extracting e.g. the "42" from foo.php?id=42.
本文标签: javascriptWhat does *3939 mean in var idthishrefreplace(*3939)Stack Overflow
版权声明:本文标题:javascript - What does .*=,'' mean in var id=this.href.replace(.*=,'');? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703450a2524712.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论