MVC 3,下拉列表选择

发布于 2024-12-05 11:09:07 字数 70 浏览 0 评论 0原文

我有一个功能下拉列表。我还有两个与下拉列表相关的文本框。我希望当下拉列表更改并初始化时,用所选对象的数据填充文本框。这可能吗?

I have a function dropdown list. I also have two text boxes related to the dropdown list. I want the populate the the textboxes with data from the selected object when the dropdown list changes and is initialized. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

面如桃花 2024-12-12 11:09:07

是的,你可以使用 jquery 函数,如下所示:

<form>
  <input class="target" type="text" value="Field 1" />
  <select class="target">
    <option value="option1" selected="selected">Option 1</option>
    <option value="option2">Option 2</option>
  </select>
</form>
<div id="other">
  Trigger the handler
</div>

$('.target').change(function() {
  alert('Handler for .change() called.');
});

Yes, You can use a jquery function like this:

<form>
  <input class="target" type="text" value="Field 1" />
  <select class="target">
    <option value="option1" selected="selected">Option 1</option>
    <option value="option2">Option 2</option>
  </select>
</form>
<div id="other">
  Trigger the handler
</div>

$('.target').change(function() {
  alert('Handler for .change() called.');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文