打开设置 Editor->code Editing->Matched brace取消这个对勾…
SecureCRT中某些命令提示符下按Backspace显示^H的解决方法 安装了Apache Derby数据库服务器之后,使用ij客户端去连接derby服务端,可是在ij中输入命令的时候,每当输入错误了想要按backspace回退的时候,却发现出来的是^H.网上搜索了一下,看到有人也遇到了类似的问题,并且在没有分析出现这种问题原因的情况下,就给除了解决方法,我目前也只能先照猫画虎按网上说的做,解决问题,然后再分析原因,虽然这样不是很合理,但是基本还能凑效. 提纲 1.问题描述 2.解决方法 3…
//加载商品默认的分类$.get('/admin/category/selec/' + {$simple.0.first_pid},function(msg){ $("#two_cate").empty(); $("#two_cate").append(new Option("请选择分类","")); console.log({$simple.0.first_pid}); var pid = {$simple.0.pid};…
IniOS 7, Apple completely revamped the user interface to give it a fresh and modern look. One of the problems, I have with the new look is the lack of buttons. The text buttons can be a little disorienting. Thankfully, Apple has been listening to fee…
/etc/profile 和 ~/.bashrc 或者直接在用户的.bash_profile中添加 export PS1='[\u@\h \W]\$' 然后执行source命令…
if pagecontrol.activepage=TabSheet1 then是在当前显示页------解决方案--------------------------------------------------------PageControl1.ActivePage------解决方案--------------------------------------------------------case activepageindex------解决方案------------------…
一.问题分析 由于Linux系统中并没有包含中文相关的字体库,而不是系统不支持中文或者中文乱码,因此显示给我们的是方块儿 二.解决方法 1.从window系统中的字体库复制需要的中文库到Linux系统中 windows字体库路径:C:\Windows\Fonts 这里我自己选择的是宋体simsun.ttc这个文件 2.上传到Linux系统中 2.1在linux字体目录创建一个文件夹用于存放添加的字体库(Linux默认的字体目录:/usr/share/fonts) 因此我们跳转到上面的目录中并创建…
首先看一段代码: class Foo(): def __init__(self): print "__init__ method" def public_method(self): print "public_method" def __private_method(self): print "__private_method" def _halfprivate_method(self): print "_halfprivate_met…
一.设置UITableView里面的顶部 cell 距离顶部的间距的三种方式: 方法 1. 直接设置: self.tableView.contentInset = UIEdgeInsetsMake(HWStatusCellMargin, 0, 0, 0); @interface HWHomeViewController : UITableViewController@end @implementation HWHomeViewController - (void)viewDidLoad{   …
TabBarController 是在 ios 开发过程中使用较为频繁的一个 Controller,但是在使用过程中经常会遇到一些问题,例如本文所要解决的,如何修改 TabBar 选中时文字及图片的颜色. 如果需要,可以从这里下载完整的代码. 首先,我们创建一个新的项目,使用 TabBarController,并为该 TabBarController 的 Child Controller 中的 TabBarItem 设置默认图片以及选中时的图片,如下图所示: storyboard: tab ba…