的利用價值我有一個隱藏字段,它具有以下的標記:選擇控制使用jQuery - hiddenfield
<input type="hidden" name="ctl00$ContentPlaceHolder1$LinksOverview1$ProductView$ctrl1$ctl01$ctl00$DescriptionOfLink$QuestionDivInfo" id="ContentPlaceHolder1_LinksOverview1_ProductView_ctrl1_ctl00_3_DescriptionOfLink_3_QuestionDivInfo_3" value="ContentPlaceHolder1_LinksOverview1_ProductView_ctrl1_ctl00_3_questionMark_3" />
我的隱藏字段的值,相同的跨度,我有的ID:
<span id="ContentPlaceHolder1_LinksOverview1_ProductView_ctrl1_ctl00_3_questionMark_3" class="questionMarkLayout">(?)</span>
我不知道代碼被呈現前我的跨度的ID,但我可以訪問我隱藏的字段的值。
使用jQuery,我想:
- 中把握控制,我hiddenfield價值的ID
到目前爲止,我已經試過:
<script type="text/javascript">
$(document).ready(function() {
alert('<%#QuestionDivInfo.ClientID %>');
$('<%#QuestionDivInfo.ClientID %>').val().mouseover(function (e) {
$('<%#HintDiv.ClientID %>').show();
});
$('<%#QuestionDivInfo.ClientID %>').val().mouseleave(function (e) {
$('<%#HintDiv.ClientID %>').hide();
});
});
</script>
但它不起作用。
任何提示? :)
+1爲扭曲的問題。 – Adil 2012-07-09 18:07:30
問題沒有扭曲,他們的方法跟隨是扭曲 – Adil 2012-07-09 18:14:40
非常感謝:)工作! – 2012-07-09 19:11:57