@(ViewData["value"]);
inを使用する必要がありますdocument.ready
。しかし、
@(ViewData["value"])
すべてのjQueryを使用すると機能しません。以下に示す私のサンプル:
$(document).ready(function () {
var test = @(ViewData["value"]); // remove this line query has been working
if (test != null){
//my code
}
});