0

我只是想为输入设置一个值,但它不起作用。这是我的 jquery 函数:

function display_form() {
    try {
        $('#start_date').val('2012/08/21');
    } catch (e) {
        alert('error');
    }

   // window.alert($('[name=start_date]').val()); (shows "undefined")
   $('#add-event').show();
}

这就是 display_form 的调用方式:

$(document).ready(function() {
        $('#calendar').fullCalendar({ 
            dayClick: function(date, allDay, jsEvent, view)
            {     
                date_format = $.fullCalendar.formatDate(date,"yyyy-MM-dd HH:mm:ss");
                    display_form();
                    return false;

                },
            events: 'https://www.google.com/calendar/feeds/myLogin%40gmail.com/public/basic'
        });
    });

这显示“未定义”。这是我的表格:

<input id="start_date" name="start_date" type="text" size="6" />

我应该把我想使用的表单的 id 放在某个地方吗?我只是按照 jquery 文档中的说明进行操作,但它似乎不起作用。谁能帮助我?

4

2 回答 2

1

这将有助于

window.alert( $('input[name=start_date]').val() ); 



function display_form() 
    {   try {
        $('#start_date').val('2012/08/21');
        }catch (e){
                     alert('error');
                 }

       window.alert( $('[name=start_date]').val() ); 
       }

$(document).ready(function() {
$('#press').click(function() {
  display_form();
  });
    });
于 2012-08-31T09:39:36.240 回答
0

HTML

<input id="start_date" name="start_date" type="text" size="6" />
<button id="press">Press</button>

JavaScript

function display_form() {
    try {
        $('#start_date').val('2012/08/21');
    } catch (e) {
        alert('error');
    }

    window.alert( $('[name=start_date]').val() ); 
}

$('#press').click(function() {
    display_form();
 });

jsFiddle

于 2012-08-31T09:39:38.260 回答