来自广播的甜蜜警报和价值

时间:2017-05-22 09:29:22

标签: javascript jquery html angularjs-scope sweetalert2

我遇到了从甜蜜警报中获取收音机价值的问题。 我想从收音机给我的HTML页面提供价值。

addTags是一个按钮, radioV来自html中的<p id="radioV"></p>

有什么想法吗?

$scope.addToTags = function() {
  var inputOptions = new Promise(function(resolve) {
    setTimeout(function() {
      resolve({
        'n': 'nouns',
        'a': 'adjectives',
        'v': 'verbs',
        'o': 'others',
        'i': 'idioms',
        'a': 'all'
      })
    }, 1000)
  })
  swal({
      title: 'Select only one:',
      input: 'radio',
      inputOptions: inputOptions,
      inputValidator: function(result) {
        return new Promise(function(resolve, reject) {
          if (result) {
            resolve()
          } else {
            reject('You need to select something!')
          }
        })
      }
    })
    .then(function(result) {
      swal({
        type: 'success',
        html: 'You selected: ' + result
      })
    })
    .then(function(result) {
      $('#radioV').attr(result).val();
    })
};

0 个答案:

没有答案