我正在尝试向我的网站“添加链接”功能。为此,我正在使用来自 Twitter Boostrap JS 的 Modal 插件。在主页上只有“链接”字段要填写,当用户单击“添加链接”按钮时,会弹出一个模式,用户会看到要填写的完整表单:链接、标题、标签。但是,我希望链接字段预先填充上一步中的值。这类似于您在delicious.com 上“保存链接”时发生的情况。
但是,问题是当我在模态对话框中插入 javascript 时,模态对话框停止工作。任何想法如何解决这个问题?非常感谢!
<html>
<head>
<title>Example</title>
<link rel="stylesheet" href="scripts/bootstrap.min.css">
<link rel="stylesheet" href="main.css" />
</head>
<body>
<!-- The Modal Dialog -->
<div id="modal-from-dom" class="modal hide fade">
<div class="modal-body">
<form id='post-on-wall' method='POST' action='savePost.php' enctype='multipart/form-data'>
Peter
<script type="text/javascript">
var linkURL = $('#linkURL').val();
//document.write("<input type='text' class='label-inline' name='linkURL' id='wall-post' value=linkURL>");
document.write(linkURL);
</script>
<button type='submit' class='btn'>Add Link</button>
</form>
</div>
</div>
</div>
<div class="container">
<div class="wall-post">
<textarea class='label-inline' name='linkURL' id='linkURL'></textarea>
<button data-controls-modal="modal-from-dom" data-backdrop="static" class="btn">Add Link</button>
</div>
</div>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/bootstrap-modal.js"></script>
</body>