dsaff82024 2018-06-03 00:36
浏览 41
已采纳

Smarty输入字段中的动态主机名,点击事件为jQuery

At the moment I am trying to create an dynamic hostname with an jQuery on click event. I have this so far

Smarty:

<div>
  <input class="hostname-box" type="text" name="domain" required="" value="">
  <a href="#host" class="button">Add</a>
</div>

<div>
  <a href="#submit" class="button">Order</a>
</div>

jQuery:

$('.button').click(function(){
var jHostName = $('.hostname-box');
var hostNameValue = jHostName.text().trim();

var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

for( var i=0; i < 5; i++ )
   text += possible.charAt(Math.floor(Math.random() * possible.length));

if(hostNameValue === '') {
     jHostName.val(text+".hostname.local");
}
});

I can generate an text on click like random.hostname.local. But the goal is to achieve to generate an text like vps{random}-{currentDate}.hostname.local.

  • 写回答

1条回答 默认 最新

  • dongzouhe9734 2018-06-03 00:56
    关注

    Like this?

        var hostNameValue = '';
        var text = "vps-";
        var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    
        for( var i=0; i < 5; i++ ) {text += possible.charAt(Math.floor(Math.random() * possible.length));}
    
        let date = new Date();
        text += '-'+date.toISOString().substr(0,10);
      
        if(hostNameValue === '') {
          console.log(text+'.hostname.local');
        }

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?