摘要:
java语言支持的变量类型 类变量:独立于方法之外的变量,用 static 修饰。 局部变量:类的方法中的变量。 实例变量(全局变量):独立于方法之外的变量,不过没有 static 修饰。 public class Variable{ static int allClicks=0; // 类变量 S 阅读全文
摘要:
在前端开发及调试过程中总能遇到浏览器报如下错误: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the re 阅读全文
摘要:
//分割url提取参数 var url = Window.location.search;//获取url地址?至结尾的所有参数 //key(需要检错的键) url(传入的需要分割的url地址) function getSearchString(key,Url) { // 获取URL中?之后的字符 v 阅读全文