jQuery插件Rangy输入使其他输入不起作用

时间:2017-01-12 09:39:34

标签: jquery

解决:

STM32 HAL ADC Tutorial

感谢Jainil Nagar发现问题。

这对我来说真的不清楚。 我正在尝试使用Updated version on jsfiddle为xml创建一个小编辑器,但正如您从rangyinputs jquery plugin中看到的那样,无法在页面中的其他输入中写入,即使这些不是

var text = driver.findElement(By.id("pick_up_pincode_error")).getText();
console.log(text);

我无法理解为什么。我错过了什么?我把jquery插件放在项目中,示例工作正常,但其他输入不再起作用。

更多信息:我没有在我的CSS中设置一个不可选择的类,但是使用了https://jsfiddle.net/sappe/2t99596p/2/

1 个答案:

答案 0 :(得分:1)

您为每e.preventDefault();mousedown事件添加了input

 $("input").mousedown(function(e) {
    e.preventDefault();  // This is what causing the problem

    switch (this.name) {
    }
});

您也应该在开关案例中添加默认案例。