クリック用の私のJavascript
<script type="text/javascript">
$(document).ready(function () {
$(".role").click(function () {
alert("idiot");
});
});
</script>
DIV「ロール」のCSS
{
position: absolute;
width: 50px;
min-height:20px;
height:auto;
border:1px solid #000;
word-wrap: break-word;
float:left;
font-size:12px;
z-index: 30;
margin-top:50px;
margin-left:3px;
}
これはHTMLです
<div class="role" align="center" >Gate Keeper</div>
HTMLをクリックする機能を呼び出す方法は?
これは私のジフィドルです