2011-07-01 72 views
0

我在一個函數中使用$ .post,並且我得到$是underfined。這是一個iframe中的onchange事件。爲什麼它報告這個錯誤?

script type="text/javascript"> 
function photoupdate(id, name, value, chk) 
{ 
    if(chk==false) 
    { 
     value=""; 
    } 
    $.post('photoupdate.php', {id: id, name: name, value: value}) 
}; 
</script> 


<input type="radio" name="PrimaryPhoto" id="'.$recordid.'" value="Yes" '.$checked.' 
style="position:relative; left:-20px; bottom:5px; margin:0px" 
onchange="photoupdate(this.id, this.name, this.value, this.checked)"/> 

回答

0

您需要確保iframe內容具有自己的html/head/script src = jquery.js和whatnot。