Home  >  Article  >  Web Front-end  >  JS string processing example code_javascript skills

JS string processing example code_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:26:571274browse

复制代码 代码如下:

link(){
var olink = getElementById("link");
var text = olink.innerHTML;
var start = text.indexOf(">") 1;
var end = text.lastIndexOf("<");
text = text.substring(start,end);
location.href=text;
}
maito:smvcn@yahoo.com.cn

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