菜鸟教程 tryjsref_indexof 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p id="demo">Click the button to locate where in the string a specifed value occurs.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction()
{
var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");
document.getElementById("demo").innerHTML=n;
}
</script>