在F12 控制台输入,可执行jquery操作
Posted dongdongleday
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在F12 控制台输入,可执行jquery操作相关的知识,希望对你有一定的参考价值。
<!-- 控制台执行jquery -->
var importJs=document.createElement(‘script‘) //在页面新建一个script标签
importJs.setAttribute("type","text/javascript") //给script标签增加type属性
importJs.setAttribute("src", ‘http://ajax.microsoft.com/ajax/jquery/jquery-1.4.min.js‘) //给script标签增加src属性, url地址为cdn公共库里的
document.getElementsByTagName("head")[0].appendChild(importJs) //把importJs标签添加在页面
以上是关于在F12 控制台输入,可执行jquery操作的主要内容,如果未能解决你的问题,请参考以下文章