我想在我的Wordpress插件中使用jQuery。我试图使用enqueue脚本加载jquery库,但它引发了一个错误。
错误:$不是函数
这是我的主插件中的代码片段。php文件。。。
function ($post)
{
wp_enqueue_script(\'jquery\');
?>
<script type="text/javascript">
function doTestParse(searchString){
var rx = new RegExp(\'(?![^<]+>)\'+searchString, "gi");
$(this).html($(this).html().replace(rx, \'<b>$&</b>\'));
}
</script>
<?php ?>