36 lines
886 B
Plaintext
36 lines
886 B
Plaintext
@*
|
|
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> |