我要救的java紙條變種中asp.net的MVC臨時數據,但它給語法錯誤如何對一個JavaScript值賦給一個TempData的
$(".PopReviewNo").click(function() {
if (($('textarea').val().length == 0)) {
$('.comm').addClass("layout");
}
else {
$(".comm").removeClass("layout");
var comment = $("#comme").val();
**@TempData["CommentForPop"]= $("#comme").val();** ///Check this one
$.fancybox({
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'easingIn': 'easeOutBack',
'easingOut': 'easeInBack',
'width': 850,
'height': 394,
href: "/Stores/PopReview/@Model.Company.id?comment=" + comment,
'type': 'iframe'
});
}
});
你不能這樣做...... – 2013-03-15 08:35:07
Js運行在客戶端,asp.net在服務器端,不再有問題嗎?你爲什麼需要它? – Sergio 2013-03-15 08:35:13
您需要做的是向端點發出ajax請求,以保存javascript中的變量。 – gdp 2013-03-15 09:01:29