增加下载微信公众号文章功能
This commit is contained in:
36
20220330_Vote/Ewide.Web.Entry/Views/WX/Index.cshtml
Normal file
36
20220330_Vote/Ewide.Web.Entry/Views/WX/Index.cshtml
Normal file
@@ -0,0 +1,36 @@
|
||||
@*
|
||||
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||
*@
|
||||
@{
|
||||
}
|
||||
|
||||
<script src="/Contents/jquery.min.js"></script>
|
||||
<h1 class="title">输入Url:</h1>
|
||||
<div class="document-editor">
|
||||
<div class="toolbar-container"></div>
|
||||
<div class="content-container">
|
||||
<div id="editor">
|
||||
<textarea name="TxtContent" id="TxtContent" rows="2" cols="80"></textarea>
|
||||
</div>
|
||||
<button onclick="go()">获取内容</button>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function go() {
|
||||
window.location.href = ("/gb/yjb/wx/result?url=" + escape($("#TxtContent").val()));
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.document-editor {
|
||||
width: 667px;
|
||||
margin: 0 auto;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
width: 667px;
|
||||
margin: 0 auto;
|
||||
font-size: 20px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user