zoukankan      html  css  js  c++  java
  • 根据字符返回位置

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    </head>
    <body>
    字符串<input type="text" id="txt" /> 索引的字符串<input type="text" id="index" />
    <button id="btn">从前面开始索引</button>
    <button id="btn2">从后面开始索引</button>
    <script type="text/javascript">
    // 点击按钮时
    function $(id){ return document.getElementById(id)};
    $("btn").onclick = function(){
    //弹出索引的字符串 在 字符串 中的位置
    alert($("txt").value.indexOf($("index").value));
    }
    $("btn2").onclick = function(){
    alert($("txt").value.lastIndexOf($("index").value));
    }
    </script>
    </body>
    </html>

  • 相关阅读:
    zoj 2812
    按1的个数排序
    输出等腰梯形
    约瑟夫环杂题
    九度oj 题目1369:字符串的排列
    .NET CORE LOG
    .NET CORE 配置
    dotnet core 数据库
    asp.net core mvc简介
    dotnet core 项目
  • 原文地址:https://www.cnblogs.com/zhaocong/p/7002697.html
Copyright © 2011-2022 走看看