主题: 怎么自定义一个插入符号的标签 |
作者: hofa, 发布日期: 2010-01-23 18:48:21, 浏览数: 6581 |
<script type="text/javascript"> KE.lang['hello'] = "您好"; KE.plugin['hello'] = { click : function(id) { alert("您好"); } }; KE.show({ id : 'content1', cssPath : './index.css', items : ['hello'] }); </script> 自带例子是一提示框,怎么改成点击时 在内容后面插入 "###我是分页符###" ?请各位指点指点 click : function(id) { //这里应该写点什么呢? } }; |
作者: 冰水咖啡[30], 发布日期: 2011-02-08 04:11:15 |
<script>
KE.lang.example1 = '插入分页'; KE.plugin.example1 = { click : function(id) { KE.insertHtml(id, '###我是分页符###'); } }; KE.show({ id : 'content1', cssPath : 'index.css', items : ['source', '|','example1'] }); </script> |
回复 |