gpt4 book ai didi

javascript - 如何使用 jquery/javascript 从 ontextchanged 事件获取文本框值

转载 作者:行者123 更新时间:2023-12-03 01:21:51 25 4
gpt4 key购买 nike

如何使用 jquery/javascript 从 textchanged 事件中获取文本框值。我尝试了很多东西但没有成功。最后是我尝试的,这是以下代码

@for (int i = 0; i < Model.MaterialRecordRowCount; i++)
{
<div class="form-group row">
<div class="col-sm-3">
<input type="text" id="Material_PartNo@(i)" name="Material_PartNo@(i)" data-provide="typeahead" class="typeahead search-query form-control autocomplete" placeholder="PartNo" onclick="ShowData ('$('#Material_PartNo@(i)').val()')" />
</div>
</div>
}

function ShowData(PartNo) {
alert(PartNo);
}

现在,当我运行此代码时,它会显示一个错误,即未捕获的语法错误:无效或意外的 token

我没有得到正确的语法,甚至不知道这个方法是否适合通过 textchanged 事件获取文本框值。

最佳答案

改变

onclick="ShowData('$('#Material_PartNo@(i)').val()')"

onclick="ShowData(this.value)"

however I suspect from the classes you are implementing an autocomplete plugin and need to work within the API of that plugin

关于javascript - 如何使用 jquery/javascript 从 ontextchanged 事件获取文本框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51731627/

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