Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试(使用 C# 和 jQuery)复制一个文本框的值以显示在另一个文本框中。看起来很简单,但我的语法有问题。我需要改用相等运算符吗?
return _browser.Execute("$('#" + toWhere + "').val('" + fromWhere + ".val()');");
假设你的_browser.Execute工作正常,我会说问题是那里val没有 jQuery 调用的内容。
_browser.Execute
val
return _browser.Execute("$('#" + toWhere + "').val($('#" + fromWhere + ").val()');");