javascript – jQuery val是未定义的?

前端之家收集整理的这篇文章主要介绍了javascript – jQuery val是未定义的?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码
<input type="hidden" id="editorTitle" name="title" value="home">
<textarea name="text" id="editorText"></textarea>

但是当我写$(‘#editorTitle’).val()和$(‘#editorText’).html(),$(‘#editorTitle’).val()是’undefined’和$(‘#editorText’ ).html()是空的?

哪里不对?

编辑:

这是我的完整代码

function openEditor() {
    $("#editor").show().animate({ width: 965,height: 380 },1500);
    $("#editor textarea").show();
}

function closeEditor() {
    $("#editor").animate({ width: 985,height: 1 },1500,function () {
        $("#editor").hide();
        $("#editor textarea").hide();
    });
}

function setedit() {
    $.ajax({
        type: "POST",url: "engine.PHP",data: "title=" + $('#editorTitle').attr('value') + "&text=" + $('#editorText').html(),beforeSend: function () {
            $('#mainField').html('<img src="data/images/loader.gif" alt="Loading...">');
        },success: function (msg) {
            alert(msg);
            closeEditor();
            search();
        }
    });
}
function search() {
    $('#title').val($('#search').val());

    $.get('engine.PHP?search=' + $('#search').val(),function (data) {
        $('#mainField').html(data);
    });

    $.get('engine.PHP?raw=true&search=' + $('#search').val(),function (data2) {
        $('#editorText').html(data2);
    });

    $.get('engine.PHP?title=true&search=' + $('#search').val(),function (data2) {
        $('#h1').html(data2); // Row 152
        $('#editorTitle').html(data2);
    });
}

$(document).ready(function () {
    $("#ready").html('Document ready at ' + event.timeStamp);
});

但是怎么了?

解决方法

您可能在HTML: example之前包含您的JavaScript.

您应该在窗口加载时执行JavaScript(或者更好地,当DOM完全加载时),或者应该在HTML之后包含JavaScript:example.

原文链接:https://www.f2er.com/jquery/153886.html

猜你在找的jQuery相关文章