申し訳ありませんが、JavaScriptは初めてです。
次のように、クリックイベントのパラメーターとしてIDセレクターを渡したい:
私は試した :
<button onclick="mycustomfunction(document.getElementById('someTextId'))"/>
そしてjqueryを使用する:
<button onclick="mycustomfunction($('#someTextId').val())"/>
mycustomfunction(control)
{
// do something with the control
}
誰かが私がどこで間違っているのかを理解するのを手伝ってくれますか?