私はqtipを使用して、qtipに表示されている埋め込みフォームを作成しようとしています。フォームに送信イベントを作成しようとしているときに何も起こりません。私はjquery 1.7と最新のqtipバージョンを使用しています。qtip2でフォームを使用できません。 (イベントがアクティブにならない)
私はhttp://craigsworks.com/projects/qtip2/demos/の例を使用しようとしましたが、そのデモは私には役に立たないでしょう。私のコードを見て、私が何か間違っているかどうか教えてください。
ありがとうございます!
$("#addNews").qtip({
position: {
corner: {
target: 'bottomMiddle',
tooltip: 'topMiddle'
},
adjust: { x: 0, y: 0 }
},
show: {
when: { event: 'click' },
solo: true
},
hide: {
fixed: true,
when: { event: 'unfocus' }
},
content: {
text: '<form id="frmAddNews"><div class="inputWrap left"><div class="label">Rubrik</div><input type="text" id="" name="" class="inputText" value="" /></div><div class="inputWrap left"><div class="labelTextarea">Meddelande</div><textarea id="" name="" class="inputTextarea" value=""></textarea></div><div class="submit_container"><input type="submit" value="Lägg till nyhet" /></div><div style="clear:both"></div></form>',
},
style: {
border: {
width: 5,
radius: 2,
color: '#e1e1e1'
},
width: 350,
background: '#FFF',
padding: 15,
tip: true, // Give it a speech bubble tip with automatic corner detection
name: 'cream' // Style it according to the preset 'cream' style
},
events: {
render: function(event, api) {
$('form', this).bind('submit', function(event) {
event.preventDefault();
console.log("hej");
});
}
},
});
正確に何をしようとしているのかわかりません。しかし、あなたの '
私はqtipの中に表示されているフォームを使用しようとしています。私はrender-functionの内部でconsole.logを使用しようとしましたが、そこには入っていません。コンテンツ内のテキストは私のフォームで構成されています。 – hgerdin