2
在這裏,我從數據庫中獲取JSON格式的數據到我的.js文件中,並且我也在使用div。但是我沒有在我的HTML中獲取div page.Please誰能告訴我如何在我的HTML page.Below顯示是我的代碼:如何顯示js文件在html頁面內的js文件div
我的JSON數組:
[{"chat_question_id":"1",
"chat_question_title":"What is PHP?"},
{"chat_question_id":"17",
"chat_question_title":"what is php?",}
下面是我的js代碼:
function ChatQuestionsInfo(bRowId)
{
var actionType = "";
var hdnFlagForSearchQue = $("#hdnFlagForSearchQue").val();
if(hdnFlagForSearchQue=="insert"){
actionType = "ChatQuestionsInfo";
} else {
actionType = "searchQuestiontitle";
}
if($.trim($("#questionname").val())==""){
$("#questionname").focus();
alert("Enter Question Name");
return false;
}
if($.trim($("#technologytags").val())==""){
$("#technologytags").focus();
return false;
}
$.post(rootUrl+"includes/ajax/ajax_chat.php", {action: actionType,bRowId:bRowId,bQuestionName: $.trim($("#questionname").val()),bTechnologyTags: $.trim($("#technologytags").val())},
function(data){
var htmlText = '';
for (var key in data) {
htmlText += '<div class="tab-content">';
htmlText += '<div id="newquestions"> : ' + data[key].chat_question_title + '</div>';
htmlText += '</div>';
}
$('.chat_body_form').append(htmlText);
}, "json");
return false;
}
HTML代碼:
<div id="newquestions"></div>
警報工作? –
不,它不起作用 – priya
在控制檯中打印您的對象並顯示我 like'console.log(chat);'將在控制檯窗口中打印 –