こんにちは、文字列が別の文字列内に存在するかどうかを検索するために indexOf メソッドを使用しています。しかし、文字列がどこにあるかのすべての場所を取得したいですか? 文字列が存在するすべての場所を取得する方法はありますか?
<html>
<head>
<script type="text/javascript">
function clik()
{
var x='hit';
//document.getElementById('hideme').value ='';
document.getElementById('hideme').value += x;
alert(document.getElementById('hideme').value);
}
function getIndex()
{
var z =document.getElementById('hideme').value;
alert(z.indexOf('hit'));
}
</script>
</head>
<body>
<input type='hidden' id='hideme' value=""/>
<input type='button' id='butt1' value="click click" onClick="clik()"/>
<input type='button' id='butt2' value="clck clck" onClick="getIndex()"/>
</body>
</html>
すべての位置を取得する方法はありますか?