随笔分类 -  web前端

摘要:1、自定义指令知识点 自定义指令 。。。。 。。。 2、插件 1 定义,在js文件中 2 3 export default { 4 5 install : (app, options) =>{ 6 7 app.config.globalPropertis.$translation = (key) = 阅读全文
posted @ 2024-06-23 15:23 土味程序员 阅读(26) 评论(0) 推荐(0)
摘要:Dom操作 1.文本内容操作 - innerText:操作文本 - innerHtml:操作全内容 innerText的作用是获取文本内容,而innerHTML的作用则连标签一起获取(全内容)。 赋值的方式item.innerText="程序员";item.innerHTML="<p>程序员</p> 阅读全文
posted @ 2019-03-08 17:21 土味程序员 阅读(196) 评论(0) 推荐(0)
摘要:Javascript相关内容 1.序列化--json - stringify() 将对象转换为字符串 - parse() 将字符串转换为对象 2.字符串转义--encodeURI - encodeURI(url); - decodeURI(url); - decodeURIComponent(url 阅读全文
posted @ 2019-03-08 15:34 土味程序员 阅读(271) 评论(0) 推荐(0)