ac-php包在emacs中不起作用

时间:2016-10-10 01:09:31

标签: emacs package


我试图安装     ac-php emacs个包。我从melpa成功安装了它,但无法确定如何使用。 这是发生的事情的屏幕截图。
包安装 installed
ac-php中描述的配置 Configuration
没有选择     ac-php-*enter image description here
怎么解决?请帮忙

1 个答案:

答案 0 :(得分:-1)

您在这里发出的是$(' .to-translate')。每次点击输入时都会触发click(),然后每次都重新创建输入。

我已经用修复

更新了你的小提琴

https://jsfiddle.net/pcf331u5/

tpl += '<div id="'+iid+'" class="bg-warning"><p class="to-translate">'+text+'</p></div>';

$('.to-translate').click(function(){
$(this).parent().html('<input type="text" name="" class="form-control    ttxti">'); 
});

我在div中添加了一个包含to-translate类的p元素。触发click事件时,parent(div)用输入

替换内容