我在wordpress中使用Civicrm插件。 Civicrm javascripts使用<p>
tages自动生成。
以下示例代码:
<p><script language="javaScript" type="text/javascript"></p>
<p> cj(function() {
countryID = "country-Primary"
// sometimes we name != id, hence if element does not exists
// fetch the id
if ( cj( '#' + countryID ).length == 0 ) {
countryID = cj( 'select[name="' + countryID + '"]' ).prop('id');
}</p>
<p> stateProvinceID = "billing_state_province_id-5"
if ( cj( '#' + stateProvinceID ).length == 0 ) {
stateProvinceID = cj( 'select[name="' + stateProvinceID + '"]' ).prop('id');
}</p>
<p> cj( '#' + countryID ).chainSelect(
'#' + stateProvinceID,
callbackURL,
{
before : function (target) {
if (typeof(setdefault) === "undefined") { setdefault = new Array(); }
targetid = cj(target).attr("id");
eval('setdefault[targetid] = cj(target).val()');
},
after : function(target) {
targetid = cj(target).attr("id");
cj(target).val(setdefault[targetid]);
}
}
);
});</p>
<p> </script></p>
如何从此脚本中删除<p>
个图标?
谢谢, 希瓦吉
答案 0 :(得分:1)
看起来你可能有一个WordPress插件,它在页面内容中使用换行符并将它们弹出到段落中。尝试禁用其他插件并逐个重新启用它们,看看是否有效。不幸的是,如果它是另一个插件,它们可能只是不兼容,或者您可能需要调整其设置。