使用流程：

1、引入"pct_tools/jquery.min.js", "pct_tools/pct_tools.js", "pct_tools/pct_tools.css",

2、必须设置变量var is_ckinput = "y"(启用)(或"n"停用)

3、在需要使用自定义输入法的input外围添加class="pct-ckinput-wrapper"
(<div class="pct-ckinput-wrapper"><input></div>)


4、如果input元素是通过js写的，需要调用函数“initCkinput()”初始化

其他：

1、在input元素中设置pct-change="function()"，当该input元素使用自定义输入法改变值时，将调用函数function()
(<div class="pct-ckinput-wrapper"><input pct-change="alert(self.val())"></div>)
(self: 元素自身对象，调用函数等于jQuery函数中的$(this))