我正在尝试从 Ext.net 切换到 select2 js。
我不知道如何将脚本与控件结合起来。
这是我到目前为止所尝试的。
我盯着新的 WebForms 应用程序,通过 NuGet 安装了 select2 并尝试从项目站点复制示例
这是我的 aspx 的样子
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="select2_test.Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test Select 2</title>
<script src="Scripts/jquery-1.7.2.js"></script>
<script src="Scripts/select2.js"></script>
<link href="Content/css/select2.css" rel="stylesheet" />
<script type="text/javascript">
$("#e12").select2({ tags: ["red", "green", "blue"] });
</script>
<script type="text/javascript">
$(document).ready(function () { $("#e1").select2(); });
</script>
</head>
<body>
<form id="form1" runat="server" >
<div>
<!--
<input id="e12" />
DO NOT WORK-->
<!--
<select id="e12">
<option></option>
</select>
DO NOT WORK-->
<!--<section id="e12"></section>-->
<!--
<asp:TextBox ID="e13" ClientIDMode="Static" runat="server"></asp:TextBox>
DO NOT WORK-->
<!-- This one only work as sample from web, others do not works-->
<select id="e1">
<option value="0">Test 0</option>
<option value="1">Test 1</option>
<option value="3">Test 3</option>
</select>
</div>
</form>
</body>
</html>
当我想在 int 上应用 JS 时,我使用什么类型的控件?是否有任何使用 select2 js 的 WebForms 示例?