当我使用jquery ui自动完成版本1.8.5和jquery mobile alpha 2时。 单击自动完成列表中的项目时出现错误:
$ this.attr(“href”)未定义。
有没有人知道它的任何修复?
编辑:
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/ui-lightness/jquery-ui-1.8.custom.css">
<link rel="stylesheet" type="text/css" href="css/autocomplete.css">
</head>
<body>
<div id="formWrap">
<form id="messageForm" action="#">
<fieldset>
<label id="toLabel">select:</label>
<div id="friends" class="ui-helper-clearfix">
<input id="to" type="text">
</div>
</fieldset>
</form>
</div>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.0a2.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.custom.min.js"></script>
<script type="text/javascript">
$(function(){
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
//attach autocomplete
$("#to").autocomplete({
source:availableTags
,
//define select handler
select: function(e, ui) {
var contact = ui.item.value;
createSpan(contact);
$("#to").val("").css("top", 2);
return false;
}
});
});
function createSpan(contact){
//create formatted friend
span = $("<span>").text(contact)
//add contact to contact div
span.insertBefore("#to");
}
</script>
</body>
</html>
答案 0 :(得分:1)
修改了jquery.mobile-1.0a2.js:添加了一个检查以查看href是否未定义 在代码里面
$( "a" ).live( "click", function(event) {
//( START: My added code)
if($(this).attr( "href" )==undefined){
//for links created for interaction - ignore
return false;
}
//( END: My added code)
//Remaining code follows
这解决了这个问题。
答案 1 :(得分:1)
我发现最好覆盖jquery ui代码而不是直接修改jquery移动源代码(为了可维护性)。以下内容覆盖了自动完成列表中呈现每个项目的jquery-ui方法;它将一个值为'#'的href属性添加到正在创建的锚元素中。这应该可以防止未定义的href错误:
$('#to').data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( $( "<a></a>" ).attr({href: '#'}).html( item.label ) )
.appendTo( ul );
}
答案 2 :(得分:0)
$(this)
不是$this
。