私は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();
});
}