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.
たとえば、次のコードがあるとします。
function tester($userInput) { this.$userInput1 = userInput; }
$object は、JavaScript で特定の意味を持ちません。単なる変数名です。ただし、jQuery ライブラリを含めた場合は、$ を使用して jQuery ライブラリを参照できます。例:$.ajax()または$('#element_id')
$.ajax()
$('#element_id')