show_xml.html
1023 Bytes
<div class="modal fade" id="show_xml" tabindex="-1" role="basic"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true"></button>
<h4 class="modal-title">上传参数</h4>
</div>
<div class="modal-body" id="content_body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">关闭</button>
</div>
</div>
</div>
</div>
<script data-exclude=1>
$(function() {
//modal 显示事件
$('#show_xml').on('show.bs.modal', function(){
var xml = JSON.parse(window.sessionStorage.getItem('upload_ygc_xml'));
// 转换< >括号
var _html = xml.replace(/</g,'<');
_html = _html.replace(/>/g,'>');
_html = _html.replace(/"/g,'"');
$('#content_body').html(_html);
}).modal('show');
});
</script>