react 如何引用第三方库
如何在react的app中引用第三方库,如bootstrap
如下方法经测试无效,请问改如何修改
panel.js
var panel = React.createClass({
render: function() {
return (
<div class="panel-body">
example
</div>
);
}
});
React.render(
<panel />,
document.getElementById('content')
);
html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>test</title>
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div id="content">
</div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
class在react中要用className
在html里面写react.js的时候
声明时我发现有的是写
1.<script type="text/jsx">
</script>
2.<script type="text/babel">
</script>
3.<script>
</script>。
请问这是有什么根据吗?