2013-11-01 14:13:51 +08:00

63 lines
2.1 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="email.aspx.cs" Inherits="FineUI.Examples.autocomplete.email" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link href="../css/main.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="../jqueryui/css/ui-lightness/jquery-ui-1.9.2.custom.min.css" />
</head>
<body>
<form id="form1" runat="server">
<x:PageManager ID="PageManager1" runat="server" />
<x:SimpleForm ID="SimpleForm1" runat="server" Width="600px" BodyPadding="5px" EnableFrame="true" EnableCollapse="true"
Title="简单表单">
<Items>
<x:TextBox ID="TextBox1" runat="server" ShowLabel="false" EmptyText="随便输入个字母试试">
</x:TextBox>
</Items>
</x:SimpleForm>
</form>
<script src="../jqueryui/js/jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../jqueryui/js/jquery-ui-1.9.2.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
function onReady() {
var textbox1ID = '<%= TextBox1.ClientID %>';
var availableTags = [
"qq.com",
"163.com",
"gmail.com",
"outlook.com",
"126.com",
"sina.com",
"yahoo.com",
"sohu.com",
"foxmail.com",
"live.com",
"mail.ustc.edu.cn"];
function getFullEmails(name) {
var emails = [];
for (var i = 0, count = availableTags.length; i < count; i++) {
emails.push(name + "@" + availableTags[i]);
}
return emails;
}
$('#' + textbox1ID + ' input').autocomplete({
source: function (request, response) {
if (request.term.indexOf('@') === -1) {
response(getFullEmails(request.term));
}
}
});
}
</script>
</body>
</html>