本文主要總結了一些線上文檔的實用技術,後面陸續會根據實際需求將不一樣的技術進行分類或者歸到兼容文檔裏。javascript
方案:oncontextmenu=」window.event.returnValue=false」html
方案:onselectstart=」return false」前端
方案:onpaste=」return false」java
方案:oncopy=」return false;」 oncut=」return false;」web
方案:< link rel=」Bookmark」 href=」favicon.ico」>ajax
方案:< input style=」ime-mode:disabled」>瀏覽器
方案:緩存
< script >
if (top.location != self.location)top.location=self.location;
< /script>
複製代碼
方案:< noscript>< iframe src=*.html>< /iframe>< /noscript>bash
方案:< input type=button value=查看網頁源代碼 onclick=」window.location = 「view-source:」+ 「www.pconline.com.cn」」>服務器
方案:
< script language=」javascript」>
function cc()
{
var e = event.srcElement;
var r =e.createTextRange();
r.moveStart(「character」,e.value.length);
r.collapse(true);
r.select();
}
< /script>
< input type=text name=text1 value=」123″ onfocus=」cc()」>
複製代碼
方案:
< META HTTP-EQUIV=」pragma」 CONTENT=」no-cache」>
< META HTTP-EQUIV=」Cache-Control」 CONTENT=」no-cache, must-revalidate」>
< META HTTP-EQUIV=」expires」 CONTENT=」Wed, 26 Feb 1997 08:21:57 GMT」>
或者< META HTTP-EQUIV=」expires」 CONTENT=」0″>
複製代碼
方案:< a href=」#」 onFocus=」this.blur()」>< img src=」logo.jpg」 border=0>< /a>
方案:
< body onload=」top.resizeTo(300,200);」>
//打開頁面的位置
< body onload=」top.moveBy(300,200);」>
複製代碼
方案:< input onkeydown=」if(event.keyCode==13)event.keyCode=9″>
方案: auto :標準光標 ;default :標準箭頭 ; hand :手形光標; wait :等待光標; text :I 形光標; vertical-text :水平; I 形光標; no-drop :不可拖動光標 ; not-allowed :無效光標 ; help :?幫助光標 ; all-scroll :三角方向標; move :移動標; crosshair :十字標;其餘: e-resize n-resize nw-resize w-resize s-resize se-resize sw-resize
方案:< META http-equiv=V=」REFRESH」 content=」5;URL=http://www.51js.com」>
方案:oncontextmenu=」window.event.returnValue=false」
解析:在獲取屬性,ajax請求,事件座標,透明的寫法,阻止冒泡等均是不一樣的。 參考資料:ie與其餘瀏覽器區別
方案:text-indent 能夠實現文本的縮進
方案:oncontextmenu=」window.event.returnValue=false」
方案:參考代碼
public void createPdf() throws Exception {
// step 1
String inputFile = "index.html";
String url = new File(inputFile).toURI().toURL().toString();
String outputFile = "index.pdf";
System.out.println(url);
// step 2
OutputStream os = new FileOutputStream(outputFile);
org.xhtmlrenderer.pdf.ITextRenderer renderer = new ITextRenderer();
renderer.setDocument(url);
// step 3 解決中文支持
org.xhtmlrenderer.pdf.ITextFontResolver fontResolver = renderer
.getFontResolver();
fontResolver.addFont("c:/Windows/Fonts/simsun.ttc", BaseFont.IDENTITY_H,
BaseFont.NOT_EMBEDDED);
renderer.layout();
renderer.createPDF(os);
os.close();
System.out.println("create pdf done!!");
}
複製代碼
你們在使用原始方式載入腳本或者樣式文件的時候,通常cdn的建議方式是https的,但咱們的應用協議不必定是https的,這種時候使用// ,會自動識別當前頁面適合的協議,若是你強行使用https就會報錯或者很慢