在我的项目中,我正在使用EasyUI。
我有两个标签“ AA”和“ BB”,当我将它们悬停在上面时,它们的颜色会发生变化。现在,我想在单击“标签”时执行一些操作。
这是我的代码:
<script>
function recDoc(){
alert("xietst");
}
</script>
<body style="height:100%">
<style>
.dlgLabel{cursor:pointer}
.dlgLabel:hover {background-color:blue;color:white}
</style>
<div id="dlg" class="easyui-dialog" title=""
style="width:88px;height:260px;top:130px;left:170px;padding:10px">
<label class="dlgLabel" onclick="recDoc()">AA</label><br />
<label class="dlgLabel">BB</label><br />
</div>
</body>
当我删除
class=easyui-dialog
时,它可以工作。但是我希望即使在使用easyui时也可以单击标签。任何帮助都会很棒。
最佳答案
您应该按照文档中的示例进行操作:
http://www.jeasyui.com/demo/main/index.php?plugin=Dialog
关于javascript - 单击事件不适用于<Label> [使用EasyUI],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47967020/