技术池(jishuchi.com) 本次搜索耗时 6.700 秒,为您找到 687 个相关结果.
  • WMLScript length() 函数

    1628 2020-12-17 《WMLScript 教程》
    WMLScript length() 函数 语法 例子 结果 WMLScript length() 函数 length() 函数返回字符串的长度。 语法 n = String . length ( string ) 成分 描述 n 从函数返回的字符串的长度。 string 一个字符串。 ...
  • WMLScript isEmpty() 函数

    1617 2020-12-17 《WMLScript 教程》
    WMLScript isEmpty() 函数 语法 例子 结果 WMLScript isEmpty() 函数 isEmpty() 函数检查字符串是否是空的。 语法 n = String . isEmpty ( string ) 成分 描述 n 从函数返回的布尔值。 string 一个字符串。 ...
  • WMLScript toString() 函数

    1604 2020-12-17 《WMLScript 教程》
    WMLScript toString() 函数 语法 例子 结果 WMLScript toString() 函数 toString() 函数把一个值转换为字符串。 语法 n = String . toString ( value ) 成分 描述 n 从函数返回的字符串。 value 任何值。 ...
  • C 库函数 - fsetpos()

    1602 2019-08-01 《C语言教程》
    C 库函数 - fsetpos() 描述 声明 参数 返回值 实例 C 库函数 - fsetpos() 描述 C 库函数 int fsetpos(FILE stream, const fpos_t pos) 设置给定流 stream 的文件位置为给定的位置。参数 pos 是由函数 fgetpos 给定的位置。 声明 下面是 ...
  • onclick - 单击按钮时

    1597 2020-12-11 《JavaScript 教程》
    onclick - 单击按钮时 onclick - 单击按钮时 <!DOCTYPE html> <html> <head> <script> function myFunction () { document . getElementById ( "demo" ). innerHTML = "Hello World" ; ...
  • PHP vprintf() 函数

    1596 2020-12-14 《PHP 教程》
    PHP vprintf() 函数 实例 定义和用法 语法 技术细节 更多实例 例子 1 例子 2 例子 3 例子 4 PHP vprintf() 函数 实例 输出格式化的字符串: <? php $number = 9 ; $str = "Beijing" ; vprintf ( "There are %u m...
  • PHP levenshtein() 函数

    1592 2020-12-14 《PHP 教程》
    PHP levenshtein() 函数 实例 定义和用法 语法 技术细节 PHP levenshtein() 函数 实例 计算两个字符串之间的 Levenshtein 距离: <? php echo levenshtein ( "Hello World" , "ello World" ); echo "<br>" ; echo...
  • ondblclick - 双击文本时

    1590 2020-12-11 《JavaScript 教程》
    ondblclick - 双击文本时 ondblclick - 双击文本时 <!DOCTYPE html> <html> <head> <script> function myFunction () { document . getElementById ( "demo" ). innerHTML = "Hello Worl...
  • 使用 document.write() 向输出流写 HTML

    1585 2020-12-10 《HTML DOM 教程》
    使用 document.write() 向输出流写 HTML 使用 document.write() 向输出流写 HTML <html> <body>   <script type = "text/javascript" > document . write ( "<h1>Hello World!</h1>" ) </script> ...
  • PHP substr_replace() 函数

    1579 2020-12-14 《PHP 教程》
    PHP substr_replace() 函数 实例 定义和用法 语法 技术细节 更多实例 例子 1 例子 2 例子 3 例子 4 PHP substr_replace() 函数 实例 把 "Hello" 替换成 "world": <? php echo substr_replace ( "Hello" , "world" ...