<a href="#" class="button">Read More</a><br>
我在网站上有这个按钮,我不知道如何编程按钮,当我点击Read more
显示我正在销售的 cd 的信息时。
你能告诉我我该怎么做吗?
<a href="#" class="button">Read More</a><br>
我在网站上有这个按钮,我不知道如何编程按钮,当我点击Read more
显示我正在销售的 cd 的信息时。
你能告诉我我该怎么做吗?
Suppose you have,
<div id="dvInfo">
Here is your question and i am giving an answer.
</div>
<a href="javascript:void()" id='see'>See more</a>
So,
In jQuery
$(document).ready(function(){
var f_text = $('#dvInfo').html();
$('#dvInfo').html($('#dvInfo').html().substring(0,8)+"...");
$('#see').click(function(){
$('#dvInfo').html(f_text);
});
});
html部分
<asp:Button ID="btnread" runat="server" Text="Button" />
<div id="divinfo" style="display:none">More Info</div>
jQuery部分:
$(function () {
$("#<%=btnread.ClientID %>").click(function () {
$("div[id$=divinfo]").css("display", "block");
return false;
});
});