uniApp和wx小程序的语法一些区别 APP

本教程操作环境:windows10 系统、uni-app2.5.1 版本,Dell G3 电脑。

标签: 函数 实例

金莎网 发布于 2023-8-14 01:22

uniapp,常用工具函数 APP

在移动应用开发中,数据缓存是非常重要的一环。uni.getstorage作为uni-app的内置缓存API,提供了非常方便的数据存储能力。本篇文章将由以下几个方面进行详细的阐述,包括uni.getStorageSync, uni.getStorageInfoSync, uni.getStorageInfo, uni.getStorageSync缓存问题,旨在帮助读者深入了解uni.getstorage的使用和注意事项。

标签: 实例 app

金莎网 发布于 2023-8-14 01:13

WIN10企业版LTSC如何激活 DEMO

WIN10企业版LTSC如何激活?win10企业版ltsc又被称为win10企业版2019长期服务版本,下文中为大家带来了win10企业版ltsc激活密钥及使用密钥教程,小编亲测有效,感兴趣的朋友不妨阅读下文内容,参考一下吧

标签: 实例

金莎网 发布于 2023-6-27 21:49

js将文本和数字变成图片 JavaScript

[该文章已加密,请点击标题输入密码访问]


金莎网 发布于 2023-2-21 12:38

discuzX3.4在独立页面当中实现登陆/登出功能 PHP

[该文章已加密,请点击标题输入密码访问]

标签: discuz

金莎网 发布于 2023-2-14 20:15

select选择跳转 CSS

<select name="archive_chrono" onchange="window.location =(document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);"> <option value="">请选择</option>
<option value="http://www.baidu.com">百度</option>
<option value="http://www.163.com">网易</option>
<option value="http://www.taobao.com">淘宝</option>
</select>
标签: css

金莎网 发布于 2021-8-7 15:46

js过滤HTML标签完整实例 DEMO

这篇文章主要介绍了js过滤HTML标签实现方法,以完整实例形式分析了JavaScript使用正则表达式过滤HTML标签的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

标签: 实例 js

金莎网 发布于 2021-5-1 20:08

H5+APP,几个常用调用 APP

[该文章已加密,请点击标题输入密码访问]

标签: 函数

金莎网 发布于 2021-4-27 23:17

js实现页面打开自动定位到指定元素位置 JavaScript

类似页面抛点

 html部分:

<div class="more-merchant" id="moreMerchant"></div>

 js部分:

 

document.getElementById("moreMerchant").scrollIntoView()

标签: 实例

金莎网 发布于 2021-4-22 17:55

js获取UA(user-agent) JavaScript

<!DOCtype html>
<html>
<head>
    <title></title>
</head>
<body onload="whatBrowser()">
    <script> 
function whatBrowser() {  
document.Browser.Name.value=navigator.appName;  
document.Browser.Version.value=navigator.appVersion;  
document.Browser.Code.value=navigator.appCodeName;  
document.Browser.Agent.value=navigator.userAgent;  
}  
</script> 
<table> 
<form name="Browser"> 
<tr> 
<td> 浏览器名称: </td> 
<td> <input type="txt" name="Name" size="110%"></td> 
</tr> 
<tr> 
<td> 版本号:</td> 
<td> <input type="txt" name="Version" size="110%"></td> 
</tr> 
<tr> 
<td> 代码名称: </td> 
<td> <input type="txt" name="Code" size="110%"></td> 
</tr> 
<tr> 
<td> 用户代理标识:</td> 
<td> <input type="txt" name="Agent" size="110%"></td> 
</tr> 
</form> 
</table> 
</body>
</html>
标签: 实例

金莎网 发布于 2021-4-19 23:35