`

prompt方法 window . prompt

 
阅读更多
 语法:
vTextData = window . prompt ( sMessage , sDefaultValue )
参数:
sMessage :  可选项。字符串(String)。指定在对话框内要被显示的信息。如果忽略此参数,将不显示任何信息。
sDefaultValue :  可选项。字符串(String)。指定对话框内输入框( input )的值( value )。如果忽略此参数,将被设置为 undefined 。

返回值:
vTextData :  字符串(String) | 整数(Integet)。返回用户在对话框的输入框( input )内输入的值( value )。

说明:
显示一个包含提示信息以及输入框( input )的提示对话框。
此对话框为模式对话框,其标题栏文字不可以被改变。
示例:
document.title = window.prompt(document.title,"返回的信息");

<script>
function rdl_doClick(){
var oMessage=document.all("oMessage");
oMessage.value=window.prompt(oMessage.value,"返回的信息");
}
</script>


<input id=oMessage type=text size=40 value="请在此输入信息。">
<br><br>
<input type=button value=" 显示对话框 " onclick="rdl_doClick();">

分享到:
评论

相关推荐

    字符串 window.open() window.opener window.name window对象等的总结

    - `window.alert()`、`window.confirm()`和`window.prompt()`:提供基本的用户交互,如显示警告、确认对话框和输入框。 - `window.setTimeout()`和`window.clearTimeout()`:用于在指定延迟后执行函数,或取消已安排...

    message-prompt-window.zip_message. prompt

    标题中的“message-prompt-window.zip_message.prompt”暗示了我们要探讨的是如何创建类似QQ和MSN聊天软件中的消息提示窗口。描述中提到,这种提示窗口会在好友上线时以拉帘式或淡入淡出的方式出现在托盘区域,这...

    SQL Prompt_9.5.2.9464 含注册机

    SQL Prompt_9.5.2.9464 含注册方法 Latest version 9.5.2.9464 Released 5/3/2019 What's new in SQL Prompt Added a Show all issues link to the autofix popup window. Fixes Fixed an issue which was ...

    SQL Prompt_9.0.5.3501破解版

    SQL Prompt 9.0.5.3501 This build of SQL Prompt ...Fix: Wrong border was being applied to the active placeholder when editing a snippet in the script window. See the full release notes for details.

    SQL Prompt_9.2.0.5601破解版

    In addition to "as you type" code analysis, you can now also display a dockable list of all the issues in your currently selected script window. This is accessible via the Prompt menu : `SQL Prompt &gt; ...

    SQLPrompt_7.3.0.768

    Loading indicator is now displayed when previewing a large script in the formatting options window Improvements to CTE formatting options OPTION clause is now placed on a new line (UserVoice and forum...

    jsWindow对象及方法.pdf

    - window.prompt():此方法用于显示一个带有消息、输入框、确认按钮和取消按钮的对话框,允许用户输入文本信息,返回输入的字符串或null。 3. Window对象的定时器方法 - window.setTimeout():此方法用于设置一个...

    SQL Prompt 9.0.5.3501破解版

    SQL Prompt 9.0.5.3501 Latest version 9....Fix: Wrong border was being applied to the active placeholder when editing a snippet in the script window. See the full release notes for details.

    SQLPrompt_7.4.0.471

    Fix window functions and GROUP BY suggestions (forum) SQL Prompt now always escapes an alias if it's a keyword (forum) Columns are no longer qualified inside their own table definition (forum) Add/...

    使用window.prompt&#40;&#41;实现弹出用户输入的对话框

    `window.prompt()` 是JavaScript中一个内置的浏览器方法,主要用于创建一个简单的交互式用户界面,它弹出一个对话框,向用户请求输入特定的信息。在网页开发中,`window.prompt()` 提供了一种方便的方式来获取用户的...

    在Android的webview中定制js的alert,confirm和prompt对话框的方法

    在 Webview 载入的 html 中,我们可以使用 window.alert、window.confirm 和 window.prompt 方法来调用这些对话框。系统弹出的将是自定义实现的对应对话框。 以下是 MyWebChromeClient.java 的代码: ```java ...

    react-bootstrap-dialog:快捷方便。 React Component显示一个带有react-bootstrap的模式对话框。 window.confirm,window.alert和window.prompt的替代

    window.prompt替代方法 轻松输入密码 演示和样品 在故事书上查看演示 示例代码在/ stories / stories中 用法 安装 npm i react-bootstrap-dialog --save 或者 yarn add react-bootstrap-dia

    关于js-window对象的方法和属性资料

    ### 关于JS Window对象的方法和属性详解 #### 概述 在JavaScript中,`window`对象是最顶层的对象,几乎所有的全局变量、函数等都属于它。`window`对象提供了多种方法和属性,使得开发者能够更好地控制浏览器窗口的...

    SQL Prompt_9.0.1.3179破解版

    This build of SQL Prompt includes these improvements: Added 25 new code analysis rules, bringing the total to 88: BP006, BP011, BP016, DEP002, DEP007, DEP009, DEP012, DEP014, DEP019, DEP026, EI003, ...

    SQLPrompt_7.4.1.603

    Fix window functions and GROUP BY suggestions SQL Prompt now always escapes an alias if it's a keyword Columns are no longer qualified inside their own table definition Add/remove square brackets no ...

    SQL Prompt_9.1.1.4243破解版

    This build of SQL Prompt includes these improvements: SP-6572 : Fix missing space before NOT after IF RIGHT(...). SP-6795 : Cannot insert semicolons for DBCC statements. SP-6827 : Fix exception when...

    window对象方法属性全解

    3. `alert`、`confirm`和`prompt`方法:分别用于显示警告对话框、确认对话框和输入对话框,例如`window.alert('Hello!')`、`window.confirm('Are you sure?')`和`window.prompt('Enter your name:')`。 4. `...

    SQLPrompt_7.3.0.522

    Fix for formatting options window disappearing behind SSMS when opening a drop down (Forum post) 7.3.0.513 - 7th September Support ticket 72751: Fix for schema qualification being removed when auto-...

    SQLPrompt_7.3.0.681

    Scrollbar is now shown on styles window if needed in high dpi mode (Forum post) Improved wrapping for CASE statements exceeding the wrap column Options for TOP filter now apply to DISTINCT too Support...

Global site tag (gtag.js) - Google Analytics