0
$(document).ready(function() {
  $.ajax({
    type: "get",
    url: "textman.php",
    success: function(data) {
      $('#textbaz').append(data);
      $('#textbaz').append("<input id='textbox' type='text' placeholder='Type it man, your on the clock!'");
    }
  })
})

以上是我的javascript代码。第一个命令(将数据附加到 textbaz)完美运行并打印数据。问题是,第二个换行符。出于某种原因,它只是没有打印出来,我检查了 chrome 开发工具,它根本不存在。我很困惑,非常感谢任何帮助。

4

2 回答 2

2
$('#textbaz').append("<input id='textbox' type='text' placeholder='Type it man, your on the clock!' />");

您需要关闭输入标签。

于 2013-05-06T07:49:08.940 回答
0

您错过/>了输入元素的关闭:

<input id='textbox' type='text' placeholder='Type it man, your on the clock!' />
----------------------------------------------------------------------------- ^ here
于 2013-05-06T07:48:46.167 回答