0

これはリダクターですhttp://redactorjs.com/

WYSIWYGにリダクターを使用していますが、何らかの理由でデフォルトのテキストをjQuery2に変換しています。ばかげている。何か案は?

管理パネルに使用しているテンプレートでは、すべての jQuery コマンドに $ ではなく jQuery が必要です。それと何か関係があるのでしょうか?redactor.js ファイルですべての $ を jQuery に変換する必要がありました...

例:

デフォルトでhtmlテーブルを配置していますが、タグのみが表示され、残りはなくなり、ソースをクリックすると次のように表示されます。

<h2 style=" text-align: left; ">What is Solavei?<br>
</h2>
<p>2</p>
<h2 style=" text-align: left; ">Why Partner with Us?<br>
</h2>
<p>2</p>
<h2 style=" text-align: left; ">Join Now!<br>
</h2>
<p>2</p>
<p>2</p>

最初にロードしたときに(ソースコードビューではなく)次のように表示されるため、これは奇妙です。

What is Solavei?

jQuery2

Why Partner with Us?

jQuery2

Join Now!

jQuery2

これが私がphp経由で挿入しているテーブルです(フォーマットが不十分で申し訳ありません。応答にとってそれほど重要ではないため、これに多くの時間を費やしたくありませんでした...これがそれを行う唯一のコードではありませんと)

<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:32.183908045977%;padding:0 20px">
<h2 style=" text-align: left; ">What is Solavei?<br></h2> 
<div class="paragraph editable-text" style=" text-align: left; display: block; ">
<ul><li>A relationship driven company that offers unlimited talk, text, and internet over a nationwide 4G network for $49 per month with no contracts.</li>
<li>Using the power of social media and networking to allow their customers and partners to build an unbelievable monthly income simply by sharing the opportunity with others.</li>  
<li>A revolution that is offering millions of Americans a chance a true financial independence!</li><li><a title="" href="/about-solavei.html">
<span style="text-decoration: underline;">More...</span></a><br></li></ul></div>
</td><td class="wsite-multicol-col" style="width:34.48275862069%;padding:0 20px"><h2 style=" text-align: left; ">Why Partner with Us?<br></h2> 
<div class="paragraph editable-text" style=" text-align: left; display: block; "><ul>
<li>We are one of Solavei's fastest growing networking organizations.</li>
<li>We offer our members 100% support and access to the experience of thousands of experienced Solavei professionals.</li>
<li><span style="font-weight: bold;">We will help you build your own Solavei Network. </span>
<span style="font-style: italic;">Our success is dependent upon the success of our individual members. After you sign your first three new members, we will sign up three more for you!</span></li><li><span style=" font-style: italic;">
<a href="/about-us.html"><span style="text-decoration: underline;">More...</span></a>
<br></span></li></ul></div>  </td>
<td class="wsite-multicol-col" style="width:33.333333333333%;padding:0 20px">
<h2 style=" text-align: left; ">Join Now!<br></h2> 
<div class="paragraph editable-text" style=" text-align: left; display: block; "><a href="/join-now.html" title="">
Click here to join the Solavei Success Network. We will respond with an invitation into our lane within 24 hours.</a><br></div>  
<div><div class="wsite-image wsite-image-border-thin " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:center"> 
<a> <img src="/uploads/2/9/1/0/2910969/5542182_orig.jpg" alt="Picture" style="width:100%;max-width:150px"> </a> 
<div style="display:block;font-size:90%"></div> </div></div>  
</td></tr></tbody>
4

1 に答える 1

0

jQueryの競合がないことが理由でした。jQuery をリダクターで使用しないでください。$ を使用します。すべての $ を jQuery に変換しても機能しません。

于 2012-07-27T01:38:39.400 に答える