- Prototype 教程
- Prototype - 主页
- Prototype - 简短概述
- Prototype - 有用功能
- Prototype - 实用程序方法
- Prototype - 元素对象
- Prototype - 数字处理
- Prototype - 字符串处理
- Prototype - 数组处理
- Prototype - 散列处理
- Prototype - 基本对象
- Prototype - 模板化
- Prototype - 枚举
- Prototype - 事件处理
- Prototype - 表单管理
- Prototype - JSON 支持
- Prototype - AJAX 支持
- Prototype - 表达范围
- Prototype - 周期性执行
- Prototype 有用资源
- Prototype - 快速指南
- Prototype - 有用资源
- Prototype - 讨论
原型 - $F() 方法
$F() 函数返回任何字段输入控件的值,例如文本框或下拉列表。这是 Form.Element.getValue 的简便别名。
该函数既可以将元素 ID 或元素对象本身作为参数。
语法
$F(element)
返回值
表单元素值。
示例
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> function ShowValue() { var value = $F('userName'); alert( 'Entred Value :' + value); } </script> </head> <body> <p>Enter any value in the box and then click "Show Value"</p> <form> <input type = "text" id = "userName" value = "Madisetti, Praveen"> <br/> <input type = "button" value = "Show Value" onclick = "ShowValue();"/> </form> </body> </html>
输出
prototype_utility_methods.htm
广告