我想使用jquery對話框,但我不斷收到此錯誤。無法讀取屬性'1'的空錯誤jqueryui
股利我使用的對話框:
<div id="save-dialog" title="Save">
<p>Is this a tipo or a new patch? Leave blank if its a patch</p>
<p>Enter patch like this:"CB 1"</p>
<form>
<fieldset>
<input type="text" id="patch" value=""/>
</fieldset>
</form>
</div>
完全JS:
function savex(name){
var desc = jQuery('input#'+name).val();
var id = "<?php echo $_GET[id]; ?>";
var patch = jQuery("#patch").val();
jQuery("#save-dialog").dialog({
autoOpen:false,
height:300,
width:300,
modal:true,
buttons: {
"Saving": function(){
jQuery.ajax({
url: 'editcontentheroes.php',
type: 'post',
data: 'id='+id+'&desc='+desc+'&name='+name+'&patch='+patch,
always: function(output)
{
history.go(0);
}
});
},
Cancel: function(){
jQuery(this).dialog("close");
}
}
});
}
功能savex是由一個按鈕調用。試圖檢查一些空變量,但沒有發現任何問題。
編輯:標題的錯誤,我得到
EDIT2:我使用WordPress的
什麼錯誤?您的標題是錯誤消息嗎? – adeneo
您的錯誤不存在。 –
標題是錯誤信息 – thenewseattle