我有以下替换脚本,当我添加另一个要替换的单词时,我在wordpress页面上得到一个空白页面...这个问题与我在该域上使用的php版本有任何联系吗?
<script>
$(".wpb_wrapper, p").html(function(i, html) {
return html.replace('chest flyes', '<button class="koumpaki" onclick="ppsShowPopUpOnClick(100, this); return false;" rel="modal:open">example</button>');
});
$(".wpb_wrapper, p").html(function(i, html) {
return html.replace('tricep dips', '<button class="koumpaki" onclick="ppsShowPopUpOnClick(124, this); return false;" rel="modal:open">tricep dips</button>');
});
$(".wpb_wrapper").on("click", '[rel="modal:open"]', function(e) {
e.preventDefault();
e.stopPropagation(); // allow the click to keep the modal open
$("." + $(this).text()).toggle();
});
$(document).on("click", function(e) { // click anywhere but link and modal
$(".modal").hide();
});
$(".modal").on("click", function(e) {
e.stopPropagation();
}); // allow a click on the modal
</script>