我是 jQuery 新手,想知道是否可以将 TextBox 作为 jQuery 函数的参数传入。像这样的东西:
<input id="MyInput" value="" type="text" >
//how/what to pass in this function to change the value of the input?
function SetValueTextBox(? ?)
{
//change the value of the MyInput Textbox
}
当然,我有超过 1 个文本框,我想在其中使用它,因此这个问题。