這段代碼完美的作品,但是當我把最終的HTML,只出現的價值觀,但沒有HTML。發生什麼事??jQuery是剝離HTML,我不知道爲什麼
$('[role=query-username]').live('click', function() {
var output = "<table>";
$.post(
'/action/jsonUserInformation.php',
'username=' + $('#username').val(),
function(data) {
$('#user_results').html('');
var data_json = $.parseJSON(data);
$.each(data_json, function() {
$.each(this, function(i, v)
{
output = output + "<tr><td>" + i + "</td><td>" + v + "</td></tr>";
});
output = output + "</table>";
});
$('#user_results').html(output);
});
});
結果輸出是: code37username_code41account_passwordfb8465e62c8b2bd01d1d14965748b3e4account_status2account_type1creationdate2008-10-23mail_code39confirmedbb022e5a2419271daa2764f9cad5500crecoveryenabledreferrertimezonepreferred_currencycomission_plan1basemoney0privileges5paywaypersonal_info37last_update2008-10-23 00:00:00nameslastnamessexaddressphonemobilezipcitystatecountryidbusi[email protected]cjimenezhk.com
爲什麼使用PHP標記?我沒有看到任何php – 2011-02-03 05:44:52
您是否嘗試過使用不同的「插入」功能。 http://api.jquery.com/append/ – 2011-02-03 07:01:23