gpt4 book ai didi

jquery - .replaceWith 替换功能

转载 作者:行者123 更新时间:2023-12-01 06:24:27 26 4
gpt4 key购买 nike

我正在尝试使用 .replaceWith 将单词替换为函数,但它不起作用我认为问题是我没有正确地正确编写函数,但我不知道如何正确编写它。任何人都可以帮助我吗(只是很小的一部分。)谢谢。

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.min.js">  
<html>
<body>

<script type="text/javascript">

var d=new Date();
var weekday=new Array(7);
weekday[0]="Monday";
weekday[1]="Tuesday";
weekday[2]="Wednesday";
weekday[3]="Thursday";
weekday[4]="Friday";
weekday[5]="Monday";
weekday[6]="Monday";


</script>


<script type="text/javascript">

$(document).ready(function($){
$('div.Shipby').replaceWith(function(){
return $("<div>").text("Orders placed now will ship " + weekday[d.getDay()]);
});
});

</script>

<div class="Shipby">
Tomorrow.
</div>
</body>
</html>

最佳答案

只需设置text():

$('div.Shipby').text("Orders placed now will ship " + weekday[d.getDay()]);

或者html()(如果您计划在字符串中包含 HTML):

$('div.Shipby').html("Orders placed now will ship " + weekday[d.getDay()]);

无需使用document.write()

关于jquery - .replaceWith 替换功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8044390/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com