我无法理解为什么我的第二个代码不起作用(刚刚编辑过的Ruhetag 2)。作为一个测试,看我的目标是否正常,我写了Ruhetag1,单击我的checboxes时可以找到,但我写了Ruhetag2也有相同的功能,但另外检查看看哪些复选框已经在条目上检查。 Ruhetag1工作正常,Ruhetag2根本没有反应 - 它也没有给我一个错误信息。你能帮我看看这个地方是什么吗?非常感谢。
Ruhetag1
$(".quiet").click(function (e) {
$(this).parent().find(".optimes input[type=text]").val('');
$(this).parent().find(".optimes").toggle();
});
Ruhetag2
$(function(){
$(".quiet").each(function(){
quiet(this);
});
$(".quiet").click(function() {
quiet(this);
});
});
function quiet() {
if ($(this).is(':checked')) {
$(this).parent().find(".optimes input[type=text]").val('');
$(this).parent().find(".optimes").hide();
} else {
$(this).parent().find(".optimes").show();
}
}
答案 0 :(得分:0)
元素未传递给函数Encoding(tdm_quan@Dimnames$features) <- "UTF-8"
tdm_quan
Document-feature matrix of: 1 document, 8 features (0% sparse).
1 x 8 sparse Matrix of class "dfm"
features
docs enmascarados si masduro chingán quieres aguantas canción t
text1 1 2 1 1 1 1 1 1
,因此函数中不存在/l*v <pathToLog>
。试试以下?:
quiet()