摘要: 1.input('get./s') : 强制转换为字符串类型 input('get./a') : 强制转换为数组类型 input('get./d') : 强制转换为整型类型 input('get./b') : 强制转换为布尔类型 input('get./f') : 强制转换为浮点类型 注意:Thin 阅读全文
posted @ 2017-12-19 10:06 程序猿的猫 阅读(9783) 评论(0) 推荐(0)
摘要: 第一种:$(document).ready(function(){ func(xxx)//执行函数}); 第二种:$(function(){ func(xxx)//执行函数}); 第三种:jQuery(function($) { func(xxx)//执行函数}); 如果不用jquery,在页面初始 阅读全文
posted @ 2017-12-19 09:58 程序猿的猫 阅读(13667) 评论(0) 推荐(0)