0

我是 javascript/jquery 的新手,我忽略了一些基本的东西。我想通过调用函数将 div 的内容替换为一些文本。绝对我尝试过的每件事都失败了。

http://jsfiddle.net/spuder/dTGBy/

html

<body>
<div id=test>

</div>
</body>

脚本

$(document).ready( function()  {

   getTest();

}



function getTest() {
    $("#test").html("Hello World");
    //$('#test').replaceWith('<h2>New heading</h2>');
    //$("#test").attr("text","http://www.w3schools.com/jquery");
    //$("#test").attr("href","http://www.w3schools.com/jquery");
    //$("#test").html("New text");
    //$(".test").html("New text");
    //$("test")html.("New text");
    //$("test").update("New text");
    //document.getElementById("testSpan").innerHTML = "42";
    // $("#test").html("<b>Hello world!</b>"); 
}

//This is supposed to be super easy ^

//http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_dom_html_set
//http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_dom_attr_set
//http://www.willmaster.com/library/web-development/replace-div-content.php
//http://api.jquery.com/replaceWith/
4

2 回答 2

5

好的,你犯的错误:

  • 没有在 JsFiddle 中包含 jQuery
  • 错误地结束了你的document.ready
  • 忘记了 div id 周围的引号

JS:

$(document).ready(function(){
   getTest();
});



function getTest() {
    $('#test').replaceWith('<h2>New heading</h2>');
    //$("#test").attr("text","http://www.w3schools.com/jquery");
    //$("#test").attr("href","http://www.w3schools.com/jquery");
    //$("#test").html("New text");
    //$(".test").html("New text");
    //$("test")html.("New text");
    //$("test").update("New text");
    //document.getElementById("testSpan").innerHTML = "42";
    // $("#test").html("<b>Hello world!</b>"); 
}

HTML:

<div id="test">

</div>

小提琴http://jsfiddle.net/ajp36/1/

于 2013-03-31T17:55:06.637 回答
1

试试这个:

$(document).ready(function () {
    getTest();
});

在这里演示

于 2013-03-31T17:54:53.317 回答