我有一个电话,所以在提交表单时,它不会刷新。现在有一个值是当我手动点击地址上的输入时按下f5时重新提交我的表单。
我的插件值取自选项页面和wp_options
function wb_twitter_mention_tag_callback(){
global $wb_twitter_live_feed_options;
echo "<input name='wb_twitter_live_feed_options[twitter_mention_tag]' type='text' value='{$wb_twitter_live_feed_options['twitter_mention_tag']}' /><br />";
}
我的变量调用。如果我没有检查$ wb_twitter_live_feed_options [&#39; twitter_mention_tag&#39;],则不会在刷新时重新提交(f5或手动点击回车)
if($wb_twitter_live_feed_options['twitter_mention_tag']){
$twitter_mention_tag = "#test";
}
我的ajax电话
$('#twitterformpost').unbind('submit').bind('submit', function (e) {
$('input[type=submit]', this).attr('disabled', 'disabled');
e.preventDefault();
form = this;
$.ajax({
type: 'post',
url: '',
data: $('#twitterformpost').serialize(),
success: function () {
// Performs twitter post
}
});
});