05.js

来自「进行ajax开发sdsd s d sd s」· JavaScript 代码 · 共 16 行

JS
16
字号
function submitQuery() {    // This is what we want to ask the user.    // Limited formatting is possible with underscores and newlines.    var message = "\n\n\n\n" +        "_________________________________________________\n\n" +        "Please be aware that complex queries such as yours\n"     +        "may require a minute or more of search time.\n"    +        "_________________________________________________\n\n\n"   +        "Click Ok to proceed or Cancel to abort";    // Ask for confirmation, and abort if we don't get it.    if (!confirm(message)) return;     /* The code to perform the query would go here */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?