You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
821 B
35 lines
821 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="referrer" content="no-referrer">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>详情</title>
|
|
{literal}
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
iframe {
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
{/literal}
|
|
</head>
|
|
|
|
<body>
|
|
<input type="hidden" name="" id="wid" wid="{$wid}">
|
|
<!-- <iframe src="https://m.weibo.cn/detail/{$wid}" frameborder="0"></iframe> -->
|
|
<script>
|
|
var wid = $('#wid').attr('wid')
|
|
window.location.href = 'https://m.weibo.cn/detail/' + wid;
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|