如何解决将ASP.Net jQuery更改为可重用/通用功能
我有一个.net表单,其中包含多个div部分。我有一个按钮,可以切换每个按钮的可见性。目前,我只能设法使每个btn / div都使用一个jquery块。
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
$("#btnSection1").click(function () {
if ($(this).val() == "Show") {
$("#Section1").show();
$(this).val("Hide");
} else {
$("#Section1").hide();
$(this).val("Show");
}
});
</script>
<input id="btnSection1" value="Show" runat="server" type="button" name="btnSection1"/>
<div id="Section1" style="display: none;">
Section 1 text
</div>
- 在将jquery从使用
val
转换为text
以便使用asp:Button
而不是<input' type="button" />
方面有什么建议吗?以下内容不起作用:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
$("#btnSection1").click(function () {
if ($(this).text() == "Show") {
$("#Section1").show();
$(this).text("Hide");
} else {
$("#Section1").hide();
$(this).text("Show");
}
});
</script>
<asp:Button ID="btnSection1" runat="server" Text="Show" name="btnSection1"/>
<div id="Section1" style="display: none;">
Section 1 text
</div>
预先加油。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。