07 2020 档案
摘要:pages/index/index.vue <template> <view class="content"> <title></title> </view> </template> <script> import title from './components/title.vue' export
阅读全文
摘要:空项目刚运行-微信开放工具,就提示错误:appServiceSDKScriptError 1,检查下,微信开发工具设置-安全设置,服务器端口设置是否启动 2,检查下端口是否占用 我的是2,emmm解决了。
阅读全文
摘要:方法1:在跳转地址上面写上参数,如:A页面要跳转到B页面,向B页面传递参数key,之是woaixuexi, <navigator open-type="navigateTo" url="../../b/b?key=woaixuexi" /> 路由后的页面会触发生命周期函数onLoad, onShow
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>jquery学习<
阅读全文
摘要:$(function(){...});是$(document).ready(function(){...})的简写形式,是在DOM加载完成后调用执行的回调函数,并且只会执行一次。
阅读全文