JavaScript swap问题,求大神指点,重谢! 150

编写一个functionswap(tag1,tag2),将两个字符串作为参数。tag1和tag2都是HTML里id的元素,这个function应该交换这两个元素的inne... 编写一个function swap(tag1,tag2),将两个字符串作为参数。tag1和tag2都是HTML里id的元素,这个function应该交换这两个元素的innerHTML值。如果HTML不存在要的元素,弹出警告框。
编写一个函数clearit()添加一个新按钮“打印”元素id =“按钮”。这个打印按钮应该显示打印,应该有一个onclick属性,是指一个函数printit()。
编写一个function printit()显示一个警告写着文本“print called”去证明代码正常工作。

求大神指点,在线等!

<html>
<head>
<script src="q1.js"type="text/javascript"> </script>
</head>
<body>
Dear <spanid="salutation">Name</span>;
<p>
It has come to our attention that your invoice<span id="invoice">ID</span>
has yet to be paid. It has now been <spanid="time">some time</span> since
you received <span id="item">thematerial</span> from Evil Incorporated. Please
remit payment immediately. <spanid="threaten"></span>
</p>
Yours sincerely,<br>
<br>
<br>
J. Smith, Accounting
<div id="buttons">
<center>
<buttononclick="format()">Format</button>
<buttononclick="clearit()">Clear</button>
</center>
</div>
</body>
</html>
展开
 我来答
luoluoyide
2015-11-24 · TA获得超过397个赞
知道小有建树答主
回答量:529
采纳率:0%
帮助的人:277万
展开全部
function swap(firstId,secondId){
var firstEl = document.getElementById(firstId);
var secondEl = document.getElementById(secondId);
var temp = firstEl.innerHTML;
firstEl.innerHTML = secondEl.innerHTML;
secondEl.innerHTML = temp;
}

function clearit(){
var printBtn = document.createElement('input');
printBtn.id = 'printBtn';
printBtn.type = 'button';
printBtn.value = 'print';
printBtn.onclick = printit;

document.body.appendChild(printBtn);
}

function printit(){
alert('print called');
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式