2011-06-03 73 views
0

假设我有outerpage.html保存页/打印页按钮的页面IFRAME SRC被链接到

<html> 
<head> 
</head> 
<body> 
    <input type="button" id="printPage" name="printPage" /> 
    <input type="button" id="savePage" name="savePage" /> 
    <iframe src="someOtherPage.html"></iframe> 
</body> 
</html> 

如何使用Javascript功能来保存和打印someOtherPage.html被点击相应的按钮时?

回答