<div class="form-group" style="display: none;"> <label>保存时间:</label> <div class="form-check"> <input class="form-check-input" type="radio" name="lifetime" id="noSave" value="0" > <label class="form-check-label" for="noSave">不保存</label> </div> <div class="form-check"> <input class="form-check-input" type="radio" name="lifetime" id="oneHour" value="3600"> <label class="form-check-label" for="oneHour">一小时</label> </div> <div class="form-check"> <input class="form-check-input" type="radio" name="lifetime" id="oneDay" value="86400"> <label class="form-check-label" for="oneDay">一天</label> </div> <div class="form-check"> <input class="form-check-input" type="radio" name="lifetime" id="oneMonth" value="2592000" checked> <label class="form-check-label" for="oneMonth">一个月</label> </div> <div class="form-check"> <input class="form-check-input" type="radio" name="lifetime" id="forever" value="315360000"> <label class="form-check-label" for="forever">永久</label> </div> </div> 需要将保留时间加上去才可以!!解决了!
|