我正在尝试使用.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>
答案 0 :(得分:6)
只需设置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()
。
答案 1 :(得分:2)
正如Blender所说,听起来只更新text
或html
会更容易,但如果你想使用replaceWith
,你可以这样做:< / p>
$(document).ready(function($){
$("div.Shipby").replaceWith(function(){
return $("<div>").text("Orders placed now will ship " + weekday[d.getDay()]);
});
});
这是一个jsFiddle:http://jsfiddle.net/TbE6P/