2
A
回答
0
我們不是理由,這裏有一個例子
2
這東西是最好的完成客戶端 - 你已經在使用一個庫如jQuery或其他什麼東西?
設置了以下工作一種享受:
<asp:TextBox runat="server" id="termsConditions"
TextMode="MultiLine" Rows="10" Columns="50">
Lots of text here[...]
</asp:textbox>
<asp:button runat="server" id="accept" text="Accept" />
<script type="text/javascript">
// Using jQuery, other options are available
// pick up the button, and disable it, keeping the button for later.
// Note the use of the ClientID property of the ASP.NET controls - this allows
// us to cleanly pick up the client side id of the objects.
var button = $("#<%= accept.ClientID %>");
button.attr("disabled", "disabled");
// pick up the textarea.
var terms = $("#<%= termsConditions.ClientID %>");
// bind to the textarea's scroll event
terms.scroll(
function() {
// Compare the scollHeight (the complete height of the textarea), with the
// combination of the current position (scrollTop) and the offsetHeight.
if (terms[0].scrollHeight < (terms[0].offsetHeight + terms[0].scrollTop)) {
// Re-enable the button
button.attr("disabled", null);
}
});
</script>
相關問題
- 1. 水平滾動條和禁用垂直滾動條
- 2. 禁用滾動條件
- 3. 禁用JavaFX TableView的垂直滾動條
- 4. MX:文本垂直滾動條禁用
- 5. Bootstrap:如何禁用垂直滾動條?
- 6. 檢測滾動到底 - 禁用向上/向下滾動按鈕,返回
- 7. VB.NET:滾動條「按鈕」?
- 8. 帶條目和條件的按鈕滾動框
- 9. 如何使用不帶滾動條的按鈕在VB.NET中向下滾動
- 10. 如何向下滾動JScrollPane上的垂直滾動條?
- 11. 檢查Windows窗體滾動條是否一直向下滾動?
- 12. 禁用滾動條和鼠標滾輪但不滾動到
- 13. 如何禁用GridView中的ListView滾動條和滾動條
- 14. 垂直滾動條到表
- 15. 連接QListWidget - 滾動條和按鈕
- 16. jquery更改滾動條到按鈕
- 17. 從滾動條按鈕獲取事件?
- 18. 移動滾動條向上或向下
- 19. 有條件的頁面向下滾動
- 20. 垂直滾動條
- 21. 垂直滾動條
- 22. 滾動按鈕逐漸向下滾動
- 23. jquery向下滾動並按下按鈕
- 24. Magento中的動態條款和條件
- 25. asp.net databind gridview與垂直滾動條
- 26. 修復asp.net中的垂直滾動條
- 27. 禁用QGraphicsWebView滾動條
- 28. WebView禁用滾動條
- 29. 禁用WPF WebBrowser滾動條
- 30. 顯示父水平滾動條和子垂直滾動條
請不要做這惹惱你的用戶! – DOK 2011-02-28 15:02:33
我記得這樣的事情,在微軟合作伙伴網站.. – adt 2011-02-28 15:04:04