优雅干净的方式在JavaScript文件中包含HTML?

时间:2011-05-31 19:05:30

标签: javascript jquery

我正在构建一个带有几个模态对话框窗口的小应用程序。窗口需要一点点HTML。我已经在javascript库中对窗口HTML进行了硬编码,但对此解决方案并不满意。有没有更优雅的方式来做到这一点?似乎JavaScript没有多行字符串/ heredoc语法。

var html = "<div id='email_window'><h2>Email Share</h2><div>";
html = html + "<form action='javascript:emailDone();' method='post'>";
html = html + "<div><label for='to'>To</label><input id='to' type='text'></div>";
html = html + "<div><label for='from'>From</label><input id='from' type='text' value='" + email + "'></div>";
html = html + "<div><label for='subject'>Subject</label><input id='subject' type='text' disabled='disabled' value='" + subject + "'></div>";
html = html + "<div><label for='body'>Body</label><input id='body' type='text' disabled='disabled' value='" + body + "'></div>";
html = html + "<div><input type='submit' value='Send'><input type='button' value='Cancel' onClick='javascript:$.fancybox.close();'></div>";
html = html + "</form></div>";

$("#data").html(html);

已添加以澄清原始邮件 -

任何解决方案都无法使用Ajax / XHR来提取模板文件,因为javascript库将位于与其包含的html文件不同的域中 它有点像ShareThis。该库将包含在许多不同的站点上,并附加到div中任何锚标记的onClick事件,其属性为sharetool =&#34; true&#34;。

例如:

http://www.bar.com - index.html
<html>
...
<script type="text/javascript" src="http://www.foo.com/sharetool.js"></script>
...
<body>
<div sharetool="true">
</div>
...
</html>

7 个答案:

答案 0 :(得分:21)

您可以在页面末尾将HTML作为常规标记包含在不可见的div中。然后你就可以用jQuery引用它了。

然后,您需要以编程方式设置变量字段(电子邮件,主题,正文)

<div id='container' style='display: none;'>
  <div id='your-dialog-box-contents'>
    ...
    ...
  </div>
</div>

<script type='text/javascript'>
  $("#from").val(from);
  $("#subject").val(subject);
  $("#body").val(body);
  $("#data").html($("#your-dialog-box-contents"));
</script>

答案 1 :(得分:15)

模板。选择你的毒药

将它们内联为脚本块或使用ajax作为外部资源加载它们。

我个人使用EJS作为外部模板文件,只需让EJS加载它们并将它们注入一个容器中,并将json数据绑定到模板上。

new EJS({ 
    url: "url/to/view"
}).update('html_container_name', {
    "foobar": "Suprise"
});

然后查看文件使用通用视图逻辑。

// url/to/view
<p> <%=foobar %></p>

答案 2 :(得分:8)

对于多行字符串(没有框架,只是javascript),有几种解决方案。请参阅我对this SO Question的回答。你可以将它与一些简单的模板结合起来:

String.prototype.template = String.prototype.template ||
        function (){
            var  args = Array.prototype.slice.call(arguments)
                ,str = this
                ,i=0
                ;
            function replacer(a){
                var aa = parseInt(a.substr(1),10)-1;
                return args[aa];
            }
            return  str.replace(/(\$\d+)/gm,replacer)
};
//basic usage:
'some #1'.template('string'); //=> some string
//your 'html' could look like:
var html =
  [ '<form action="javascript:emailDone();" method="post">',
    ' <div><label for="to">To</label>',
    '       <input id="to" type="text"></div>',
    ' <div><label for="from">From</label>',
    '       <input id="from" type="text" ',
    '         value="$0"></div>',
    ' <div><label for="subject">Subject</label>',
    '      <input id="subject" type="text" disabled="disabled" ',
    '        value="$1"></div>',
    ' <div><label for="body">Body</label>',
    '      <input id="body" type="text" disabled="disabled" ',
    '        value="$2"></div>',
    ' <div><input type="submit" value="Send"><input type="button" ',
    '        value="Cancel" ',
    '        onClick="javascript:$.fancybox.close();"></div>',
    '</form>'
  ] .join('').template(email, subject, body);

答案 3 :(得分:5)

您的问题有两种解决方案: - javascript中heredoc语法的替代方法是使用\转义换行符:

var tpl = "hello\
stackoverflow\
World !";

char被转义为被忽略,并且不会在结果字符串中发生。

您还可以使用模板创建普通的html文件,并在js脚本中创建隐藏的iframe并加载crossdomain html模板。您现在可以访问iframe的文档对象并检索body.innerHTML。理论上!我还没有测试过这个解决方案......

答案 4 :(得分:3)

就个人而言,我喜欢像这样构建DOM树:

$('#data').html(
    $('<div/>', {
        id: 'email_window',
        html: $('<h2/>', {
            html: 'Email Share'
        })
    }).after(
        $('<form/>', {
            action: 'javascript:emailDone();',
            method: 'post',
            html: $('<div/>', {
                html: $('<label/>', {
                    for: 'to',
                    html: 'To'
                }).after($('<input/>', {
                    id: 'to',
                    type: 'text'
                }))
            }).after(
                ... etc
            )
        })
    )
);

答案 5 :(得分:1)

你是对的,JS没有heredocs或多行字符串。也就是说,通常的方法是将HTML包含在HTML中,并在适当的时候显示或隐藏它。你已经在使用jQuery了,所以你大部分都在那里:

<div style="display:none;">
    <form method='post' class="email">
         <input id='from' type='text'> <!-- other form fields omitted for brevity -->
    </form>
    <form method='post' class="facebook"></form> <!-- again, omitted for brevity -->
</div>

然后,您可以填充表单并将其放在正确的位置:

$('#data').html($('form.email').find('input#from').val(email).end().html());

答案 6 :(得分:0)

<强> Cook.js

div([
  button({click:[firstEvent, secondEvent]},
         'You can bind (attach) events on the fly.'),
  p('Here are some popular search engines'),
  ul([
    li([
      a('Google', {href:'http://www.google.com'})
    ]),
    li([
      a('Bing', {href:'http://www.bing.com'})
    ]),
    li([
      a('Yahoo', {href:'http://www.yahoo.com'})
    ])
  ])
]);

如何运作

Objects = Attribute & Events
    -> {href:'facebook.com', src:'static/cat.gif', ng-bind:'blah'}
String  = Text or Html
    -> 'hello world'
Array   = Elements
    -> [a('hello world', {href:'facebook.com'}), img({src:'static/cat.gif'})] 

more on cook.js!