gpt4 book ai didi

javascript - 如何在 MVC razor View 中显示颜色选择器

转载 作者:行者123 更新时间:2023-11-30 15:40:58 31 4
gpt4 key购买 nike

我有一个使用 MVC 5 创建的项目, View 是基于 html razor a、Javascript 和 Jquery 创建的。

我的一个用于插入数据的 View 包含一个文本框,我希望它在用户单击它时显示颜色选择器。

我尝试使用这个库 jscolor.js,但它在纯 HTML 页面中工作,我无法使其在 Razor View 中工作,我不知道为什么。

<!DOCTYPE html>
<html>
<head>
<title>jscolor Example</title>
</head>
<body style="text-align:center;">
<script src="jscolor.js"></script>
<h2>Example 1</h2>
Color: <input class="jscolor" value="ab2567">
</body>
</html>

Javascript 库的链接 http://jscolor.com/

这是MVC View 中的代码

<script src="jscolor.js"></script>

<script>
$(document).ready(function() {
jscolor.installByClassName("jscolor");
});
</script>

@using (Html.BeginForm("Create, "DateField", FormMethod.Post))
{
<input class="jscolor" value="ab2567"/>
....etc

有人知道这方面的信息吗??

最佳答案

尝试下面的代码。它对我有用。

@Html.TextBoxFor(m => m.PropertyList.color, new { @class = "jscolor"})

关于javascript - 如何在 MVC razor View 中显示颜色选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40827242/

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