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.
作りたい:
@{ var myVariable = "GenericId" + UniqueId; }
myVariableを jQuery セレクターとして使用します。
myVariable
$('#@myVariable').doSomething();
しかし、うまくいきません。
それは可能ですか?
括弧を使用して明示的な式を作成し、それをコードとして解釈するように Razor に指示できます。
$('#@(myVariable)').doSomething();