记录平时JavaScript使用时候一些技巧和一些相关资料。
jQuery
jQuery拿checkbox的值
1
| $("#isAgeSelected").is(':checked')
|
jQuery拿attribute的值
Javascript获得前端网址icon的方法
1 2 3 4 5 6 7 8
| var favicon = undefined,nodeList = document.getElementsByTagName("link"); for (var i = 0; i < nodeList.length; i++) { if((nodeList[i].getAttribute("rel") == "icon")||(nodeList[i].getAttribute("rel") == "shortcut icon")) { favicon = nodeList[i].getAttribute("href"); } } console.log(favicon);
|
如果在markdown里面,可以把url放在下面代码中:
1
| ![icon](https://cldup.com/dTxpPi9lDf.thumb.png)
|