技术解析
修改这些只需要将购物车模板的configureproduct.tpl文件修改即可,具体修改步骤如下:
找到相应的NS填写的div块,然后增加样式
style="display:none;"
并将以下类似代码中的value值修改。
<input type="text" name="ns1prefix" class="form-control" id="inputNs1prefix" value="ns1.t667.com" placeholder="ns1"><input type="text" name="ns2prefix" class="form-control" id="inputNs2prefix" value="ns2.t667.com" placeholder="ns2">
关于自动生成hostname:
只需将底下这段代码,增加到这个文件的底部即可:
<script>$("#inputHostname").val("vm"+((new Date()).getMonth()+1).toString()+(new Date()).getDate()+parseInt(Math.random()*(999+1),10)+".t667.com");</script>
另外如果你不想让用户修改hostname,你可以将底下的这个类似代码修改为我这样子:
<input type="text" name="hostname" autocomplete="false" readonly="readonly" class="form-control" id="inputHostname" value="{$server.hostname}" placeholder="servername.yourdomain.com">