小编典典

无法通过ajax更改按钮值

ajax

应用
http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css
http://code.jquery.com/mobile/1.3.2/jquery.mobile后-1.3.2.min.js

无法通过脚本更改按钮的文本 $(this).val('new value');

有没有类似的经验并有解决方案?

可以从 FIDDLE 尝试DEMO
****

JQUERY:

$(document).ready(function () {
    $('#submit_btn').click(function (e) {
        e.preventDefault();
        $(this).val('Processing ...');
        $.ajax({
            cache: false,
            type: "POST",
            dataType: "json",
            data: $('#form1').serialize(),
            url: "echo/json",
            complete: function (HttpRequest, textStatus) {
                $(this).val('Create');
            }
        });
        return false;
    });
});

HTML:

<form action="call.php" method="POST" id="form1" name="form1">
    <input type="text" name="campname" id="campname">
    <textarea id="longdesc" name="longdesc"></textarea>
    <input type="text" name="vercode" id="vercode" />
    <input type="submit" value="Create" id="submit_btn" />
</form>

阅读 212

收藏
2020-07-26

共1个答案

小编典典

最终申请$('#button').prev().text('your new text');工作。

只是.prev()在更改文本之前不了解为什么要使用它。

2020-07-26