4

我正在尝试使用 javascript 和 jquery 更改 HTML 元素的文本。到目前为止,这是我的代码,我似乎无法让它工作。我用谷歌搜索了它,似乎找不到任何东西。

$("div#title").hover(
    function() {
        $(this).stop().animate({
            $("div#title").html("Hello")
        }, "fast");
    },
    function(){
        $(this).stop.animate({
            $("div#title").html("Good Bye")
        }, "fast");
    }
);

任何帮助将不胜感激。

4

7 回答 7

7
$("div#title").hover(
    function () {
        $(this).stop().html("Hello").hide(0).fadeIn("fast");
    },
    function () {
        $(this).stop().html("Good Bye").hide(0).fadeIn("fast");
    }
);

jsFiddle 示例

于 2013-06-20T01:59:34.513 回答
6

您当前执行的语法不正确,您也无法为文本设置动画,而是需要为包含文本的元素设置动画。也不清楚你想要动画什么人,这里有几个例子:

动画不透明度:

$("div#title").hover(

function () {
    $(this).stop().css('opacity', '0').html(function (_, oldText) { // Set the opacity of the div to 0 and then change the html (flip it based on last value)
        return oldText == 'Good Bye' ? 'Hello' : 'Good Bye'
    }).animate({
        opacity: 1 // Animate opacity to 1 with a duration of 2 sec
    }, 2000);
});

小提琴

动画宽度:

$("div#title").hover(

function () {
    $(this).stop().animate({
        'width': '0px'  // Animate the width to 0px from current width
    }, 2000, function () {  // On completion change the text
        $(this).html(function (_, oldText) {
            return oldText == 'Good Bye' ? 'Hello' : 'Good Bye'
        }).animate({          // and animate back to 300px width.
            'width': '300px'
        }, 2000);
    })
});

小提琴

于 2013-06-20T01:47:46.250 回答
3

你也可以试试这个

$("div#title").hover(
   function() {
       $(this).stop().fadeOut("slow",function(){ 
                $(this).html("Hello")
            }).fadeIn("slow");
},
   function(){
       $(this).stop().fadeOut("slow", function(){
                $(this).html("Good Bye")
            }).fadeIn("slow");
});
于 2013-06-20T04:45:04.543 回答
2

打字风格

<font size="7" style="position:absolute; left:0px; top:0px; width:150px; z-index:50;">Hello World!</font>
    <div id="test" style="position:absolute; left:0px; top:0px; height:100px; width:150px; z-index:60; background-color: #ffffff;"></div>

$('#test').animate({"left" : "150"}, 2000);

于 2013-11-21T04:31:23.490 回答
2

文字不能真正鼓励,可以使用html方法更改内容。Lettering.js 是一个插件,可以更直观地播放文本。 http://letteringjs.com/

$("#title").hover(function(){
    $(this).html("Hello");
},function(){
    $(this).html("Good Bye");
});
于 2013-06-20T01:55:10.180 回答
2

我为此编写了一个插件,你可以在 github 上查看它:jquery-bubble-text

你可以这样使用它:

bubbleText({
    element: $element,      // must be one DOM leaf node
    newText: 'new Text',    // must be one string
});

看看这个jsfiddle中的一个例子。

希望你喜欢它 :)

于 2016-06-17T17:26:46.857 回答
-1

选择一个 HTML 元素。这是我的例子:


<h1 id="heading">Heading1</h1>
<script src="https://code.jquery.com/jquery-2.1.0.js"></script>
<script>
  //Changing the text part
  $("#heading").text("1Heading");
  // No needed code
  var read = document.getElementById("heading");
  var text = read.value;
  console.log(text);
  //Should be 1Heading
</script>

确保首先加载 jQuery:

<script src="https://code.jquery.com/jquery-2.1.0.js"></script>
于 2020-05-22T04:44:37.737 回答