欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

BootStrap网页中代码显示
用法详解

时间:2022-01-28 09:23:09|栏目:jquery|点击:

网页中代码的显示,包括行中代码显示;成段的代码显示,效果图如下

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
<head> 
<!-- 新 Bootstrap 核心 CSS 文件 --> 
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css"> 
<!-- 可选的Bootstrap主题文件(一般不用引入) --> 
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> 
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 --> 
<script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> 
<!-- 最新的 Bootstrap 核心 JavaScript 文件 --> 
<script src="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
<title>质量录入</title> 
</head> 
<body> 
<form action="<%=basePath %>rest/wx" method="post"> 
<div class="container"> 
<h1 class="page-header">代码<small><code><pre>的使用</small></h1> 
<p>Bootstrap是基于<code>HTML5</code>和<code>CSS3</code>开发的,它在jQuery的基础上进行了更为个性化和人性化的完善,形成一套自己独有的网站风格,并兼容大部分jQuery插件。</p> 
<pre> 
<xml> 
<ToUserName>mycreate</ToUserName> 
<FromUserName>wx5823bf96d3bd56c7</FromUserName> 
<CreateTime>1348831860</CreateTime> 
<MsgType>text</MsgType> 
<Content>this is a test</Content> 
<MsgId>1234567890123456</MsgId> 
<AgentID>128</AgentID> 
</xml> 
</pre> 
<pre> 
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); 
DocumentBuilder db = dbf.newDocumentBuilder(); 
StringReader sr = new StringReader(sMsg); 
InputSource is = new InputSource(sr); 
Document document = db.parse(is); 
Element root = document.getDocumentElement(); 
NodeList nodelist1 = root.getElementsByTagName("Content"); 
String Content = nodelist1.item(0).getTextContent(); 
System.out.println("Content:" + Content); 
</pre> 
</div> 
</form> 
</body> 
</html> 

上一篇:简单谈谈jQuery(function(){})与(function(){})(jQuery)

栏    目:jquery

下一篇:浅谈window.onbeforeunload() 事件调用ajax

本文标题:BootStrap网页中代码显示

用法详解

本文地址:http://www.codeinn.net/misctech/191663.html

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有