首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么在js方法中获取字符串中的索引

2012-03-25 
如何在js方法中获取字符串中的索引如何在js方法中获取字符串中的索引例如function b(span1, span2, span3,

如何在js方法中获取字符串中的索引
如何在js方法中获取字符串中的索引
 例如
 function b(span1, span2, span3, message1) {  
  document.getElementById("text1").value;  
  }
如何获取document.getElementById("text1").value; 中字符串索引

[解决办法]
document.getElementById("text1").value.indexOf("xx")
document.getElementById("text1").value.lastIndexOf("xx")

热点排行