目次 |
---|
・String.stripTags |
<html> <head> <title>String.stripTags - タグを除去する</title> </head> <!--タグを除去するのサンプル--> <script type="text/javascript" src="/js/prototype.js"></script> <script type="text/javascript"> function execute() { var str = "<b>string</b>"; alert(str.stripTags()); // タグを取り除いた値を得る } </script> <body> <button onclick="execute()">サンプル実行</button> </body> </html>