Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

您可以通过将下面的代码放在下面来隐藏“ 另存为草稿”按钮:

You may hide the Save as Draft button by putting the code written below in:

Code Block
langjavascript
<script type="text/javascript">
	    $(document).ready( function(){
		        $("#saveAsDraft").remove();
	    });
</script>