使用Jquery
预期ToolTip for Disabled TextBox$("#<%=txt_RyotName_R.ClientID%>").hover(function() {
$(this).css('cursor', 'pointer').attr('title', $("#<%=txt_RyotName_R.ClientID%>").val());
}, function() {
$(this).css('cursor', 'auto');
});
答案 0 :(得分:0)
您应该设置title
然后绑定事件处理程序。
$("#txt_RyotName_R")
.attr('title', function(){
return this.value;
})
.hover(function() {
$(this).css('cursor', 'pointer');
}, function() {
$(this).css('cursor', 'auto');
});
jQuery(function($) {
$("#txt_RyotName_R")
.attr('title', function() {
return this.value;
})
.hover(function() {
$(this).css('cursor', 'pointer');
}, function() {
$(this).css('cursor', 'auto');
});
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="txt_RyotName_R" disabled value="some text">