当我正在编辑我的页面时,我正在使用cms-editor 3.0.3以及像#34; placeholder"和" onclick"参数被删除。 因为我粘贴了以下代码:
<div class="form-group"><input class="form-control" id="PhnNo" name="user-req-phone" placeholder="Please enter your phone" type="text" /></div>
<div class="col-sm-12"><button class="btn btn-primary btn-block mt20 " onclick="trip(1)" style="width: 100px; float: left;" type="submit">Submit</button></div>
保存此代码后,它会自动转换为:
<div class="form-group"><input class="form-control" id="PhnNo" name="user-req-phone" type="text" /></div>
<div class="col-sm-12"><button class="btn btn-primary btn-block mt20 " style="width: 100px; float: left;" type="submit">Submit</button></div>
请为我提供解决此问题的解决方案。