gpt4 book ai didi

javascript - 使用JQuery设置文本框的值

转载 作者:可可西里 更新时间:2023-11-01 02:53:41 29 4
gpt4 key购买 nike

我的 Jade 模板 -

input#main_search.span2(
style = 'height: 26px; width: 800px;' ,
type = 'text',
readonly='true',
name='searchBar',
value='test'
)

JS 文件 -

$('#searchBar').val('hi')
console.log('sup')

控制台输出-

sup

但是 searchBar 测试时的值统计。我做错了什么?

最佳答案

您正在直接记录sup,它是一个字符串

console.log('sup')

另外你用错了id

模板显示 #main_search 但您使用的是 #searchBar

我猜你正在尝试这个

$(function() {
var sup = $('#main_search').val('hi')
console.log(sup); // sup is a variable here
});

关于javascript - 使用JQuery设置文本框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17558053/

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