mac 键盘符号与对应位置
highcharts官网地址:highcharts1.允许图表放大功能:在chart属性中添加 zoomType:'x', 或者 zoomType:'y', 或者 zoomType:'xy', chart: { type: 'area', zoomType: 'xy',}, 2.设置鼠标停留点出显示的信息:tooltip:...
public function createRule(Request $request) { $this->data = $request->input(); $validation = Validator::make($this->data, array(...
两个对象类型的数据如下: Object {Name: "fsdlglklfsfklk"} Object {Description: "sdfsadf"}合并代码( js): $.extend({}, Name, Description)合并后结果: Object {Name: "fsdlglklfsfklk", Description...
报错信息: No supported encrypter found. The cipher and / or key length are invalid.解决方法:在该项目目录下执行: php artisan key:generate
因为该用单选按钮的地方 非要用多选框,只能找这样的方法实现单选的效果。。。。。。基础:html <input type="checkbox" class="optionBox" value="1" > <input type="checkbox" class="optionBox" value="2"> <...
例子:html <div><a href="#text1" class="edit_text">Name Me</a></div> <div><a href="#text2" class="edit_text"&g...
AngularJS资料:AngularJS菜鸟教程
可以使用 .directive 函数来添加自定义的指令。要调用自定义指令,HTMl 元素上需要添加自定义指令名。使用驼峰法来命名一个指令, runoobDirective, 但在使用它时需要以 - 分割, runoob-directive:不同方法显示例子:mytag.php <!doctype html> <html...
经常被jquery js整的想疯,决定学下AngularJS,以后尽量不要被整那么惨 (๑• . •๑)AngularJS学习资料(不断完善):AngularJS菜鸟教程简单例子:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <...
html <input type="checkbox" class="group1" value="1" checked="checked" /> <input type="checkbox" class="group1" value="2" /> <input type="checkbox" class=...
html <input type="checkbox" name="checkAll" id="checkAll">全选 <input type="checkbox" name="book" class="book" value="book1">book1 <input type="checkbox" n...
1-20位英文或数字 :'字符串'.match(/^([a-z]|\d){1,20}$/)2.1-20 位 中文、数字或字符:'字符串'.match(/^([\u4E00-\u9FA3]|\w){1,20}$/)
注意事项:ajax的url问题,我是将ajax嵌套到layer中,待提交的表单的地址为:http://www.admin.local.com/systerm/payInterface ajax的post地址为:http://www.admin.local.com/systerm/addPay 那么url只需要写addPay就可以了,提交...
laravel5.2 api 地址:laravel 5.2 APIURL::previous和 Redirect::back() 都可以带你返回上一页我的使用实例如下(代码位置为views目录下的**.blade.php):<a class="btn btn-primary btn-sm" href="{{url(URL::prev...
来源:chrome使用标签页和窗口快捷键快捷键操作Ctrl+N打开新窗口。Ctrl+T打开新标签页。Ctrl+Shift+N在隐身模式下打开新窗口。按 Ctrl+O,然后选择文件使用 Google Chrome 打开计算机中的文件。按住 Ctrl 的同时点击链接在后台的新标签页中打开链接。按住 Ctrl+Shift 的同时点击链接在新标签...
一.解决class‘form’ not found 的方法在项目 composer.json 文件中的 require中添加代码:"require": { //... "laravel/framework": "5.2.*", "laravelcollective/html": "^5.2", //... }2.进入项目根目录更新...
在表单中需要创建 <input type="hidden"...> ,使用laravel写法如下:<input name="invisible" type="hidden" value="secret">写为:{{ Form::hidden('invisible', 'secret') }} <input i...
<script type="text/javascript"> var str = "Hello 世界!"; alert(str.indexOf("世界")); //6 if(str.indexOf("Hello")!=-1){ alert("包含"); }else{ alert("不包含"...
无数次遇到这个问题,无数次忘记怎么解决了Warning: require(D:\workspace\php\userConsole\bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in D:\workspace\php\...
^_^