gpt4 book ai didi

javascript - 如何结合 select2 js 和 WebForms

转载 作者:行者123 更新时间:2023-12-02 18:16:53 24 4
gpt4 key购买 nike

我正在尝试从 Ext.net 切换到 select2 js。
我不知道如何将脚本与控件结合起来。
这是我到目前为止所尝试过的。

我盯着新的 WebForms 应用程序,通过 NuGet 安装了 select2 并尝试从 Project site 重现示例

这是我的 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 示例?

最佳答案

您可以尝试使用这个:

<select multiple id="e1">

<option value="0">Test 0</option>

<option value="1">Test 1</option>

<option value="3">Test 3</option>

</select>

演示示例链接如下:
http://jsfiddle.net/marcusasplund/jEADR/2/
http://jsfiddle.net/john_s/xra9k/

关于javascript - 如何结合 select2 js 和 WebForms,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19203049/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com