使用此模态弹出代码http://www.queness.com/post/77/simple-jquery-modal-window-tutorial并使用“简单模态窗口”链接。
如果该页面上有textarea框。如何在模态窗口中显示文本?
该代码正在php网站上使用。
答案 0 :(得分:0)
这是未经测试的,但您可以做的是将一些代码添加到模态的单击函数中以获取textarea的文本,然后将其传递给模态本身。这将是这样的,假设你有一个名为myTextArea
的文本区:
$('a[name=modal]').click(function(e) {
//Cancel the link behavior
e.preventDefault();
//This is the added part:
//Get the textarea's text
var taText = $('textarea#myTextArea').val();
//Example - Now add the text to a span tag inside the modal
("#myDiv span").text(taText);
...
应该有希望这样做。