我有这个JS:
$.getJSON('getMessageDetails.php', function (json) {
var uc = json[4];
var uc_length = uc.length;
var firstPartLength = uc_length - 5;
var uc_1 = uc.substring(0, firstPartLength);
var uc_2 = uc.substr(-5, 3);
var uc_3 = 'RC';
if (json[2] != old_id)
{
$("#td_id").text(json[2]);
$("#td_id_new").text(json[2]);
$("#td_subject").text(json[3]);
$("#span_1").text(uc_1);
$("#span_2").text(uc_2);
$("#span_3").text(uc_3);
old_id = json[2];
}
});
然后我有我的php / html
if (count($row) > 0)
{
echo "<input type='hidden' id='td_id_new' value='".$new_id."'></input>";
echo $new_id;
echo "<tr>";
echo '<td><a class="red_link" href="'.ADDRESS.'view_message.php?id='.$new_id.'"><span class="red_link" id="td_subject">'.$subject.'</span></a></td>';
echo '<td><span id="span_1">'.$uniqueCode1.'</span><span id="span_2" class="pink_text">'.$uniqueCode2.'</span><span id="span_3">'.$uniqueCode3.'</span></td>';
echo "</tr>";
}
我想要的是通过我的json $(“#td_id_new”)设置$ new_id.text(json [2]);
当我检查元素输出时,$ new_id为0 ....因为我初始化它而不是新的id所有其他(所有其他标签)用我的json更新
检查元素:
<input xmlns="http://www.w3.org/1999/xhtml" type="hidden" id="td_id_new" value="0">7</input>
我得到了上面的值属性为7因此$ new_id是7但是在$ new_id的标签中什么都没有???
请帮忙吗? 谢谢答案 0 :(得分:0)
在PHP中设置new_id = 0.
如果你把它拿出来并像你说的那样初始化了JSON,它应该可以工作。