下面我有jquery代碼和表。 jQuery代碼是在每次單擊回覆按鈕時切換名爲「divrep」的div元素。我想要的是我希望回覆按鈕在每次點擊時改變文本值。 所以最初,按鈕的文本值是「Replie(s)」。我想在單擊時將其更改爲「隱藏回覆」,並在再次單擊時再次回到「複製」。如何在我的代碼上添加腳本來執行此操作?謝謝...如何在每次點擊按鈕時更改按鈕的文本值?
的Jquery:
$(function() {
$('.Reply').click(function() {
$(this).closest('p').next('.divrep').toggle(!$(this).closest('p').next('.divrep').is(":visible"));
// How to insert a code here to change the text value of the reply button in every click?
});
});
HTML:
<table id="mytable">
<tr >
<td class="tdstyle" >
<div style="font-weight:bold;"> @Html.DisplayFor(modelItem => item.name) </div>
<p class="comment more" style ="white-space: pre-line; margin-top:0px;margin-bottom:0px; border-radius: 4px 4px 4px 4px; max-width :500px; min-height :5px; display :block; background-color: #CCCCFF"> @Html.DisplayFor(modelItem => item.comment) </p>
<p> <input type="button" id="like" name="like" value="Like" style="color:blue;border:0px;background-color:inherit;cursor:pointer" /> <input type="button" class ="Reply" name="Reply" value="Replie(s)" style="margin-bottom:0px;color:blue;border:0px;background-color:inherit;cursor:pointer" /></p>
<div id="divReply" class ="divrep" style="display:none; position:relative;left:50px; overflow:auto;margin-top:0px;margin-bottom:0px">
<table>
<tr >
<td >
<div style="font-weight:bold;"> @Html.DisplayFor(modelItem => item2.name) </div>
<p class="comment more" style ="margin-top:0px;margin-bottom:0px;white-space:pre-line; border-radius: 4px 4px 4px 4px; max-width :445px; min-height :5px; display :block; background-color: #CCCCFF;">@Html.DisplayFor(modelItem => item2.reply) </p>
</td>
</tr>
</table>
<div>
<div class="editor-field" style="display:none; margin-bottom:5px;margin-top:5px">
<input type="text" id="comidvalue" name="id" class="id" value="@Html.DisplayFor(modelItem => item.Id)" />
</div>
<br />
<input type="text" id="namerep" name="name" class="name" style="width:445px;resize:none" />
<br />
<textarea id="reply" name="reply" class="reply" style="width:445px;height:100px;resize:none" ></textarea>
<br />
<input type="button" class="postrep" value="Post Reply" name="butname" style="cursor:pointer" />
</div>
<br />
</div>
</td>
</tr>
</table>
什麼有關[小提琴](http://jsfiddle.net/)? – Manwal 2014-10-10 03:47:42
如果你只有一個回覆按鈕,你不能只採取回覆按鈕的ID?而不是上課? – Dhwani 2014-10-10 03:49:32
@DH__我無法使用該ID,因爲我忘記告訴你,表內有循環,這就是爲什麼我使用了類。你有什麼代碼來添加它? – timmack 2014-10-10 04:02:51