我應該使用另一個變量作爲「streszczenie」嗎?或者我應該怎麼做?JSON TinyMCE返回值「 t」
在我的TinyMCE的身體認爲有HTML,但我寫在TinyMCE的
我只得到「\ t」 的 Pobably我有問題,JS
this is new problem - this question is related with this link. I added this for other users
這
這是我從TinyMCE textarea「streszczenie」
,你可以看到有文字ghhfgh,但我可以`噸得到這個文本
現在我有問題,執行JSON
<script type="text/javascript">
function Save() {
tinyMCE.triggerSave();
var Temat_controll = $('#Temat').val();
var Streszczenie_controll = tinyMCE.get('Streszczenie').getContent();
var PelnyOpis_controll = $('#PelnyOpis').text();
$.ajax({
url: '@Url.Action("DodajTematSave", "StronaGlowna")',
dataType: "json",
data: {
Temat: Temat_controll,
Streszczenie: Streszczenie_controll,
PelnyOpis: PelnyOpis_controll
},
type: "POST",
async: false,
error: function() {
},
success: function(data) {
if (data.Success) {
alert('success');
}
}
});
}
</script>
我得到這個,但所有的時間JSON不執行
當我點擊按鈕tinyMCE.get( 'Streszczenie')。的getContent()是空的我檢查這個,我不`噸知道爲什麼,因爲我有文本的textarea
<script type="text/javascript">
function Save() {
var Temat_controll = $('#Temat').val();
var $d = tinyMCE.get('Streszczenie').getContent();
if ($d.length != 0) {
if ($d.val().length != 0) {
var Streszczenie_controll = tinyMCE.get('Streszczenie').getContent();
}
else {
var Streszczenie_controll = 'ewewe';
}
}
var PelnyOpis_controll = $('#PelnyOpis').text();
$.ajax({
url: '@Url.Action("DodajTematSave", "StronaGlowna")',
dataType: "json",
data: {
Temat: Temat_controll,
Streszczenie: Streszczenie_controll,
PelnyOpis: PelnyOpis_controll
},
type: "POST",
async: false,
error: function() {
},
success: function (data) {
if (data.Success) {
alert('success');
}
}
});
}
</script>
此鏈接可能也有助於瞭解JSON的問題[點擊這裏] [1] [1]:http://stackoverflow.com/questions/15600396/json-data- html-parameter – 2013-03-24 19:19:26