以下は、jquery プラグインに使用している css です。
CSS
<style type="text/css">
body, div { font-family: arial, sans-serif;}
body { margin: 0; padding: 0; }
h3 {
font-size: 110%;
font-weight: normal;
margin: .2em 0 .5em 0;
}
#tooltip {
position: absolute;
z-index: 3000;
border: 1px solid #111;
padding: 5px;
}
#tooltip h3, #tooltip div { margin: 0; }
</style>
脚本
<script type="text/javascript">
$(function () {
$('.studentclass').tooltip({ showURL: false, positionLeft: true, html:true});
$("#block").click($.tooltip.block);
});
</script>
HTML
<label id="lblstudentname"
runat="server"
title="Name of the student in the class "
class="studentclass">
STUDENT
</label>
/br 、 /r/n を使用して、タイトルで Enter キーを押してみましたが、どれも機能していないようです。誰か助けてください。