我在使用 .click 函数时遇到问题
jQuery 对话框中的标记。
我有一个 jQuery 对话框内的 aap 标签,如下所示。
<p class="userColor" id="CMP|8|25691/XX|25691/59|59" style="text-decoration:underline;cursor:pointer;">59 - GRAPE</p>
div
<div id="colorPickerWindow" style="width: auto; min-height: 89px; max-height: none; height: auto;" class="ui-dialog-content ui-widget-content">
<p class="userColor" id="CMP|8|25691/XX|25691/20|20" style="text-decoration:underline;cursor:pointer;">20 - RED</p>
</div>
我已经尝试过 .click 和 .on 并且我都尝试过使用选择器,但是我无法为 P 标签触发点击操作。
jQuery
$(".userColor").on({
click:function(){}
});
在 jQuery 对话框中触发点击事件的正确 jQuery 是什么?