我想使用jQuery的自動完成當用戶在文本框用於輸入電子郵件地址輸入@我想啓用自動完成的jQuery用戶時進入@
當用戶輸入@ afrer輸入他的電子郵件ID域名列表像@gmail .com,hotmail.com,yahoo.com應爲
已填充,以便用戶可以選擇它而不是從自動填充中輸入。
我試過,但它不工作
我的代碼是
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var autocompOpts = {
minChars:0,
matchSubset:false,
matchContains: true,
disabled: true,
source : ["@gmail.com", "@yahoo-inc.com", "@yahoo.com", "@yahoo.co.in", "@rediff.com", "@rediffmail.com", "@hotmail.com", "@msn.com", ]
};
$("input#autocomplete").autocomplete(autocompOpts);
$("input#autocomplete").bind('keyup', function(event) {
if(event.shiftKey==1)
{
if(event.keyCode==50)
{
$("input#autocomplete").autocomplete("option", "disabled", false);
var opt = $("input#autocomplete").autocomplete("option", "disabled");
alert(opt);
}
}
});
});
</script>
</head>
<body style="font-size:62.5%;">
<center>
<input id="autocomplete" />
</body>
</html>
人太多了,這裏的格式! – RobertPitt 2010-08-27 11:25:39