新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
前端開發(fā)中這些小技巧,你知道幾個(gè)?
瀏覽器地址欄運(yùn)行JavaScript代碼
- javascript:alert('hello!');
- Firefox不支持;
- 其他瀏覽器必須手動(dòng)輸入才可執(zhí)行;
瀏覽器地址欄運(yùn)行HTML代碼
- data:text/html,
Hello, world!
- 在非IE瀏覽器可以運(yùn)行
瀏覽器變成文本編輯器
地址欄輸入:

- data:text/html,
控制臺(tái)輸入:
- document.body.contentEditable='true';
利用a標(biāo)簽自動(dòng)解析URL
- var a = document.createElement('a');
- a.href = 'https://www.maomin.club';
- console.log(a.host); // www.maomin.club
頁(yè)面擁有ID的元素會(huì)創(chuàng)建全局變量
我是內(nèi)容
引用CDN文件時(shí),不用HTTP標(biāo)識(shí)
利用script標(biāo)簽保存任意信息
在頁(yè)面中隱藏鼠標(biāo)
- *{
- cursor: none!important;
- }
文字模糊效果
- p {
- color: transparent;
- text-shadow: #111 0 0 5px;
- }
實(shí)時(shí)編輯CSS
- style{
- display: block;
- }
- body { color: blue }
實(shí)現(xiàn)長(zhǎng)寬比固定區(qū)域
- this content will have a constant aspect ratio that varies based on the width.
禁止他人使用iframe標(biāo)簽引用網(wǎng)址
- if (window.location != window.parent.location) window.parent.location = window.location;
生成隨機(jī)字符串
- function generateRandomAlphaNum(len) {
- var rdmString = "";
- for (; rdmString.length < len; rdmString += Math.random().toString(36).substr(2));
- return rdmString.substr(0, len);
- }
浮點(diǎn)數(shù)轉(zhuǎn)化為整數(shù)
- console.log(~~1.2); // 1
網(wǎng)頁(yè)題目:前端開發(fā)中這些小技巧,你知道幾個(gè)?
轉(zhuǎn)載來于:http://www.dlmjj.cn/article/cdeopsg.html


咨詢
建站咨詢
