.append:清除输入值onclick

发布于 2024-11-09 08:16:32 字数 513 浏览 0 评论 0原文

我有一个书签,它附加在正文上以调出一个小 litebox。那个 Litebox 中有一个表格。当用户单击输入字段时,我希望当前值消失。这是我到目前为止所尝试过的,但它不起作用。

function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=''' /><p>");}

我也尝试过这个,但它不允许我的书签显示:

function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=""' /><p>");}

有关如何清除 .append 中的内容的任何想法

谢谢!

I have a bookmarklet that appends the body to bring up a little litebox. In that litebox there is a form. When the user clicks on an input field I want the current value to disappear. This is what I have tried so far and it isn't working.

function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=''' /><p>");}

I have also tried this and it doesn't allow my bookmarklet to show up:

function runthis() {
$('body').append("<p><input type='text' name='story_price' value='Price' onClick='this.value=""' /><p>");}

Any thoughts on how I could possible clear the contents within the .append

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫腻 2024-11-16 08:16:32

转义引号

("可以在双引号内使用单引号")

('这不行') - 应该是 ('这不行')

function runthis() {
$("body").append('<p><input type="text" name="story_price" value="Price" onClick="this.value=\'\'" /><p>');}

Escape your quotes

("It is 'OK' to use single quotes inside double")

('This isn't OK') - should be ('This isn\'t OK')

function runthis() {
$("body").append('<p><input type="text" name="story_price" value="Price" onClick="this.value=\'\'" /><p>');}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文