gpt4 book ai didi

jquery - 如何更改文本区域的占位符?

转载 作者:行者123 更新时间:2023-12-01 02:11:23 25 4
gpt4 key购买 nike

此代码提交一个表单并且它可以工作,除了更改文本区域的占位符id=message

$('#submit').click(function(){
$.post("mail.php", $("#contact").serialize(), function(response) {
$('#message').attr('placeholder', response);
$('#success').html(response);
});
});

Firebug 中没有错误。

最佳答案

使用.prop()而不是.attr()

$('#message').prop('placeholder', response);

阅读.prop() vs .attr()

关于jquery - 如何更改文本区域的占位符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19098073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com