我有一个 jquery 疑问。以下是函数。我正在使用 jquery-2.0.3.js 。我想写
$(document).ready(function () {
function anyfunction(sender, txtid) {
}
});
但它给出了错误。为什么 ?
第二件事是
我想将数组作为参数传递给函数。如何 ?
<input id="Text7" type="text" /><input id="Button7" type="button"
value="button" onclick="anyfunction(this,'Text7')" /></p>
function anyfunction(sender, txtid) {
$(document).ready(function () {
var ctrl = $(sender).attr('id'); // get client id of control who fire event
$('#' + ctrl)[0].focus(); // It is just for example .
// or
var id1 = $("[id$='" + txtid + "']"); // get ref of any control on document using id .
$(id1).focus();
});
}