27 lines
727 B
Plaintext
27 lines
727 B
Plaintext
|
<div>
|
||
|
<div class="ni_con">
|
||
|
<h2>请求分享</h2>
|
||
|
<p>
|
||
|
请求说明(可选):
|
||
|
<textarea type="text" id="apply_content" class="apply_content mt10" style="outline:none;"></textarea>
|
||
|
</p>
|
||
|
<div class="ni_btn">
|
||
|
<a href="javascript:" class="tijiao" onclick="apply_to();" style="margin-bottom: 20px; margin-left: 60px; color: #fff">
|
||
|
确 定
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script>
|
||
|
function apply_to() {
|
||
|
url = '/users/<%=User.current.id %>/apply_for_homework?homework_id=<%=homework.id %>&content='+$("#apply_content").val();
|
||
|
$.get(
|
||
|
url,
|
||
|
{
|
||
|
|
||
|
},
|
||
|
function (data) {
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
</script>
|