0
我有這樣的代碼,我想在確認後顯示detailMess。那麼,我怎樣才能打電話裏面的div-id如何從href標記調用「div id」
<a href="" onclick="return confirm('1 time count if you click OK, Are you sure?');">Show contact details</a>
<div id="detailMess" style="display: none;">
<%
string uID = "-1";
var u = Membership.GetUser();
if (u != null) { uID = u.ProviderUserKey.ToString(); }
string U1 = Convert.ToString(Model.Load.OwnerId) ?? "";
bool isOwner = uID.Equals(U1, StringComparison.OrdinalIgnoreCase);
%>
<% if ((!LDC.Common.isShowLetGoContactInfor) || (User.IsInRole("Staff")) || (isOwner))
{ %>
<%
if (Model.User != null && Model.User.Profiles == null) { Model.User.Profiles = new LDC.Domain.Profile(); }
Html.RenderPartial("ContactInfo", Model);
%>
<% }
else
{ %>
<% Html.RenderPartial("LetgoContactInfo"); %>
<%} %>
</div>
有人幫我plz!
我想在第一次加載客戶端必須點擊確認查看,如果是 - >負載DIV –
Pandian的回答會做 – Koladz