我试图安装
ac-php
emacs
个包。我从melpa成功安装了它,但无法确定如何使用。
这是发生的事情的屏幕截图。
包安装
ac-php中描述的配置
没有选择
ac-php-*
!
怎么解决?请帮忙
答案 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)用输入
替换内容