gpt4 book ai didi

c# - 在 asp.net 页面中使用 JavaScript

转载 作者:行者123 更新时间:2023-11-28 20:17:25 27 4
gpt4 key购买 nike

我的问题可能非常简单。

我已将该代码复制到我的 asp.net Web 应用程序项目中,但我无法最小化该框。

在 ASP.NET 项目中使用 javascript 需要做什么特别的事情吗?

我尝试了代码树多次。

  1. 将脚本代码放入头 block
  2. 将脚本代码放在 div 开始之前
  3. 将脚本代码放在表单标签关闭之前

Javascript代码

$("#button").click(function(){
if($(this).html() == "-"){
$(this).html("+");
}
else{
$(this).html("-");
}
$("#box").slideToggle();
});

html代码

<div id="widnow">
<div id="title_bar"> Basic information
<div id="button"><img src="http://commons.wikimedia.org/wiki/File:Minus_in_circle.svg"></div>
</div>
<div id="box">
</div>
</div>

CSS代码

#widnow{
width:400px;
border:solid 1px;
}

#title_bar{
background: #FEFEFE;
height: 25px;
width: 100%;
}
#button{
border:solid 1px;
width: 25px;
height: 23px;
float:right;
cursor:pointer;
}
#box{
height: 250px;
background: #DFDFDF;
}

最佳答案

我假设您缺少对 jquery 的引用。如果是这种情况,用此替换脚本部分将解决问题。

<script src="code.jquery.com/jquery-1.10.2.min.js"></script>
// or use any version of jquery library..in your fiddle you used 1.7.2..Try the same instead..
<script>
$("#button").click(function(){
if($(this).html() == "-"){
$(this).html("+");
}
else{
$(this).html("-");
}
$("#box").slideToggle();
});
</script>

关于c# - 在 asp.net 页面中使用 JavaScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18954982/

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