Home >Web Front-end >JS Tutorial >js lastIndexOf() 用法实例

js lastIndexOf() 用法实例

WBOY
WBOYOriginal
2016-06-01 09:55:051732browse

实例:

<code>var src="images/off_1.png";
alert(src.lastIndexOf('/'));
alert(src.lastIndexOf('g'));</code>

弹出值依次为:6,15

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn