私の見解ではDivがあります
<div style="width:auto; display:none;" id="div11">
<form action="" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"/>
<input type="submit" value="Excel Upload" />
</form>
</div>
そして、別のDivの1つのボタンと1つのアクションリンク
<div style="text-align: left; margin-left: 20px; margin-right: 20px;">
<%= Html.ActionLink("Test Link", "", "",null, new {id = "someID" }) %>
<button id="Button1">Click</button>
</div>
jqueryを使用してアクションリンクをクリックしたときにdivを表示したい
<script type="text/javascript">
jQuery(document).ready(function () {
$("#Button1").click(function () {
debugger;
$("#div11").show();
});
$("#someID").click(function () {
debugger;
$("#div11").css("display", " ");
$("#div11").show();
});
});
</script>
Here the button is working fine but don't know why actionlink not working ...Basically i want to show the div by clicking the actionlink.................