我需要一种方法来提供HTML或外部网页的链接。基本上需要做的是我们将有网页,然后想给我们网站的用户一个URL或一段javascript插入他们自己的页面,然后在加载时在他们的页面上显示我们的HTML。
有人可以指导我朝正确的方向发展吗?
谢谢!
答案 0 :(得分:4)
您似乎需要的是iframe标记。
答案 1 :(得分:0)
您可以使用javascript从您的网站提取内容
<script src="http://youdomain.com/mycontent.js">
</script>
然后在你的js文件中使用
var myhtml ='';
myhtml += "Put your html in here";
document.write(myhtml);
答案 2 :(得分:-1)
<?php
// JsAdServer.php Copyright(c) 2013 by Phillip S. Smith Enterprises
// ok to use but include my copyright notice in code.
$htmlcontent=file_get_contents($url);
// you may also use curl or any other method to populate $htmlcontent
$jsContent=$htmlcontent;
$jsContent=preg_replace('/>\s+</','><',$jsContent);
$jsContent=str_replace("<hr />",'',$jsContent);// remove if hr's required
$jsContent=str_replace(chr(13),'',$jsContent);
$jsContent=str_replace(chr(10),'',$jsContent);
$jsContent=str_replace("'","\'",$jsContent);
$jsContent=str_replace('a href="','a target="new" rel="nofollow" href="',$jsContent);
print "document.write('$jsContent');";
?>