如何在提交前通过javascript获得帖子标题

时间:2013-08-02 17:42:56

标签: javascript jquery wordpress post

enter image description here

我正在尝试在提交发布或待审核等之前获取wordpress帖子的帖子标题。我正在使用图片中显示的代码。请看图片。

1 个答案:

答案 0 :(得分:2)

尝试:

jQuery(document).ready(function($){
  $('#publish').click(function(event){
      event.preventDefault();
      var title = $('#title').val();
      /** do whatever with the title here */
      });
 });