我有一个奇怪的问题。添加对Jquery 1.7.2的支持时,我无法在表单中向textareas添加换行符。当我点击,输入时,没有任何反应。
我在jquery中摆弄了源代码,发现如果我注释掉以下代码(在4845行)
for ( var type in Expr.match ) {
Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) );
Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) );
}
恢复了添加换行符的功能。我没有看到其他人有这个问题,所以我猜其他事情正在发生。但是,我的问题是:上面的代码的目的是什么(我不是非常精通javascript),并且删除它会带来任何风险吗?我想删除代码并恢复textareas的换行功能,但不想在不知不觉中将网站弄糟。我注意到在执行此操作后,我在js控制台中看到错误:
Uncaught TypeError: Cannot call method 'exec' of undefined -- jquery.js:4185
非常感谢任何帮助!
这是一些代码示例。 html:
<form class="form-input" method="post">
<fieldset>
<ol>
<li>
<label for="activity_type_id">Activity Type <em>*</em></label>
<select name="activity_type_id"><option value="17" label="Call">Call</option><option value="23" label="Connectivity Meeting">Connectivity Meeting</option><option value="22" label="Conversation">Conversation</option><option value="16" label="Email (incoming)">Email (incoming)</option><option value="15" label="Email (outgoing)">Email (outgoing)</option><option value="19" label="Implementation Notes">Implementation Notes</option><option value="20" label="Meeting Minutes">Meeting Minutes</option><option value="18" label="Task">Task</option><option value="21" label="Tip / Unusual Attribute">Tip / Unusual Attribute</option></select> </li>
<li>
<label for="summary">Summary <em>*</em></label>
<input size="40" maxlength="80" id="summary" name="summary" value=""/>
</li>
<li>
<label for="details">Details </label>
<textarea class="wide" name="details" id="details" rows="10" columns="80"></textarea>
</li>
</ol>
</fieldset>
<input id="submit" name="addactivity" value="Add Activity" type="submit" />
</form>
其他插件中未包含的javascript:
<script>
// Dynamic lookup of C2 companies
$(document).ready(function ()
{
$(window).keydown(function(event)
{
if(event.keyCode == 13)
{
event.preventDefault();
return false;
}
});
$("#search_input").autocomplete(
{
source: function(request,response)
{
$("#loading-search").show();
$("#no-results").hide();
$.getJSON("/services/json/cust_search.php",request,function(data)
{
response(data);
$("#loading-search").hide();
if (data.length == 0)
{
$("#no-results").show();
} else
{
$("#no-results").hide();
}
});
},
minLength: 3,
select: function(event,ui)
{
$("#search_input").hide();
$("#search_input").val(ui.item.value);
$("#search_source").val(ui.item.source);
$("#search-form").submit();
}
});
});
</script>
<script type="text/javascript">
//---------------------------------------------------------------------------
// Hide all the submenus on start. When a non-expanded menu is clicked,
// expand that menu while collapsing the menu above it. If a menu is
// clicked when its expanded, collapse.
//---------------------------------------------------------------------------
$(function()
{
// $("dd:not(:first)").hide();
$("dd").hide();
$("#menu-nexmark").slideDown("fast");
$("dt a").click(function()
{
var curr_dd = $(this).parent().next();
if (curr_dd.css("display") != "none")
{
$("dd:visible").slideUp("medium");
return;
}
$("dd:visible").slideUp("slow");
curr_dd.slideDown("slow");
return false;
});
});
</script>
答案 0 :(得分:2)
问题是这段代码:
$(window).keydown(function(event)
{
if(event.keyCode == 13)
{
event.preventDefault();
return false;
}
});
将其设置为仅引用受影响的div(我们希望禁用单击输入的自动完成搜索菜单),在其他地方恢复换行功能:
$("#somediv").keydown(function(event)
{
if(event.keyCode == 13)
{
event.preventDefault();
return false;
}
});