what does ’calling’ mean here
I come from the frozen tundra of Minnesota in the U.S.A. In a former life I was employed as a CPA, but have found my true calling in blabbering and am now a professional talker.
我来自美国明尼苏达州的苔原地带。我以前是个CPA(职业会计师),但是我在说话方面找到了自己真正的使命,所以现在成了一位专业演讲家。
calling 有“使命的召唤”的意思。引申自“呼唤”的本意。
杰克·伦敦有本书就叫the call of the wild(野性的呼唤)
querySelectorAll 方法相比 getElementsBy 系列方法有什么区别
总的来说没什么区别,只不过querySelectorAll实现了多级查找
像:document.querySelectorAll(“div.test》p:first-child“);
document.querySelectorAll( ’.test span’ );
document.querySelectorAll(“.class“)==》document.getElementsByClassName(“class“);
document.querySelectorAll(“#id“)==》document.getElementById(“id“);
document.querySelectorAll(“标签名称“)
==》document.getElementsByTagName(“标签名称“);
MySQL里面如何修改information_schema里面的信息
访问数据库information_schema中所含表的唯一方式是使用SELECT语句。不能在其中插入内容,不能更新它们,也不能删除其中的内容。
它反映的是关于mysql数据库的数据的相关信息。
你要修改关于表和字段的描述信息,是不能直接在information_schema中修改的,而是需要对数据库中相应的表进行修改,修改了相应表之后,information_schema的数据也会自动更新。
-all