提醒随机数,包括一些文字

时间:2017-08-02 11:34:12

标签: javascript math alert

我希望我的提示框中有一个文字说明&#34;您的请求编号是&#34; 然后是使用math.random()功能的随机数,但它无效< / p>

我尝试了这个并且没有用

 function submitform() {
    alert("The request number is" Math.random()); 
 }

我也试过这个并且它也不起作用

function submitform() {
    var x = Math.floor((Math.random() *50000) + 1);
    alert("The request number is" x); 
}

请帮忙

5 个答案:

答案 0 :(得分:0)

请先学习连接。在JavaScript中,用+运算符完成。 试试这个

function submitform() {

   alert("The request number is" + Math.random()); 
}

并调用函数

答案 1 :(得分:0)

&#13;
&#13;
(+) :: Num t => t -> t -> t
&#13;
&#13;
&#13;

当你需要组合一个变量和文本时,它的小错误意味着在两者之间加上+符号知道它的工作警报(&#34;请求号是&#34; + x);

答案 2 :(得分:0)

function submitform() {
     alert("The request number is "+Math.random()); 
}


function submitform() {
    var x = Math.floor((Math.random() *50000) + 1);
    alert("The request number is "+x); 
}

答案 3 :(得分:-2)

您可以使用此功能获取带字符串的随机数

function getRandomNumber(){
    return Date.now(); // :-D 
}

alert("string-" + getRandomNumber());

答案 4 :(得分:-2)

您可以使用es6 template literal

function submitform() {
    alert(`The request number is ${Math.random()}`);
}