Ich habe ein Webformular, mit ASP-Steuerelemente, mit ich möchte sehen, ob es überprüft wird, um weitere Informationen anzuzeigen (Checkbox1 ist so aktiviert -> div: yourDivClass show). aber meiner Seite nicht Es funktioniert hier ist mein Code:Webformular läuft nicht Skript
<%@ Page Title="Form" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Form.aspx.cs" Inherits="WebApplication1.Form" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<!DOCTYPE html>
<html>
<head>
<style>
.yourDivClass{
display:none;}
</style>
<script language="text\javascript">
$("#CheckBox1").change(function() {
if ($(this).attr('checked')) {
$(".yourDivClass").show();
}
});
</script>
</head>
<body>
<asp:Panel ID="Panel1" runat="server">
<table>
<tr>
<td >Do you have...?</td>
<td class="hiddenText">
<asp:CheckBox ID="CheckBox1" runat="server" />
</td>
</tr>
</table>
</asp:panel>
<div class="yourDivClass">Im Your div</div>
<table>
<tr>
<td>
<asp:Button ID="Button1" runat="server" Text="Submit" ForeColor="#FF66FF" OnClick="Button1_Click" />
</td>
<td>
<asp:Label ID="Label1" runat="server" Text="Label" Visible="false"></asp:Label>
</td>
</tr>
</table>
</body>
</html>
</asp:Content>
irgendwelche Ideen bitte
Irgendwelche Konsolenfehler/Protokolle? – evolutionxbox
@evolutionxbox Ich sehe nichts in der Konsole, vielleicht schaue ich nicht an der richtigen Stelle, könnten Sie mir bitte weitere Informationen geben? – BKChedlia
Google "Chrome Dev Tools Konsole", "IE Dev Tools Konsole" oder "Firefox Dev Tools Konsole" – evolutionxbox