indexOf() 方法可返回某個指定的字符串值在字符串中首次出現的位置。(工做中經常使用)javascript
註釋:indexOf() 方法對大小寫敏感!vue
註釋:若是要檢索的字符串值沒有出現,則該方法返回 -1。java
實例ui
咱們將在 "Hello world!" 字符串內進行不一樣的檢索:spa
<script type="text/javascript"> var str="Hello world!"; document.write(str.indexOf("Hello") + "<br />"); document.write(str.indexOf("World") + "<br />"); document.write(str.indexOf("world")); </script>
以上代碼的輸出:code
0 -1 6
多數用途
能夠用於郵箱是否正確的判斷,例如
<script type="text/javascript"> if((yx.email.value.indexOf('@',0)==-1)||(yx.email.value.indexOf('.',0)==-1)) { alter("郵箱地址錯誤"); yx.email.focus(); return false; } </script>
另外一個例子blog
在vue中的propsip
// 更好的作法!
props: {
status: {
type: String,
required: true,
validator: function (value) {
return [
'syncing',
'synced',
'version-conflict',
'error'
].indexOf(value) !== -1
}
}
}